diff options
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 |
