diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-11-26 22:43:30 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-12-29 23:36:21 +0100 |
| commit | 52c18e60929b64285d4bb333f87482d954c9b2e0 (patch) | |
| tree | 836ab3a01d160f45cda4f5a28522fc0bf471011c /private_include/interp_private.h | |
First commitfirst-step
Diffstat (limited to 'private_include/interp_private.h')
| -rw-r--r-- | private_include/interp_private.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/private_include/interp_private.h b/private_include/interp_private.h new file mode 100644 index 0000000..9cc6289 --- /dev/null +++ b/private_include/interp_private.h @@ -0,0 +1,14 @@ +#ifndef INTERP_PRIVATE_H +#define INTERP_PRIVATE_H + +#include <interp.h> +#include <stdbool.h> + +struct interp +{ + struct interp_cfg cfg; + const char *exception; + bool exit; +}; + +#endif |
