summaryrefslogtreecommitdiff
path: root/lex.h
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2019-08-04 14:21:05 +1200
committerDavid Phillips <david@sighup.nz>2019-08-04 14:24:50 +1200
commit4b1f9e2cb436e74ce6084dbc35df5f052cb701bf (patch)
tree201bf4d3cf1120ad0e9a8d3fe7b1a95c2fd3333d /lex.h
parent1c8e50028e15facaa4d31992bfc6cab9d10832e6 (diff)
downloadtoy-cpu-assembler-4b1f9e2cb436e74ce6084dbc35df5f052cb701bf.tar.xz
Wrap tests in valgrind, clean up memory leaks
Diffstat (limited to 'lex.h')
-rw-r--r--lex.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lex.h b/lex.h
index a14528f..908d23e 100644
--- a/lex.h
+++ b/lex.h
@@ -26,5 +26,6 @@ struct token {
};
struct token* lex(const char *filename_local, FILE *fin, size_t *len);
+void lex_free(struct token *ts, size_t t_count);
#endif /* LEX_H */