summaryrefslogtreecommitdiff
path: root/src/op/end.c
blob: 93cdae79094daf6d5eabe514f9d0dfc2d6f8449a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}