diff options
Diffstat (limited to 'src/op/end.c')
| -rw-r--r-- | src/op/end.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/op/end.c b/src/op/end.c new file mode 100644 index 0000000..93cdae7 --- /dev/null +++ b/src/op/end.c @@ -0,0 +1,15 @@ +#include <ops.h> +#include <interp.h> +#include <interp_private.h> +#include <stdbool.h> + +int op_end(struct interp *const i) +{ + i->exit = true; + return 0; +} + +int check_end(FILE *const f) +{ + return 0; +} |
