diff options
Diffstat (limited to 'comp/lucas-standen-NEA/code/tokenizer/util.h')
-rw-r--r-- | comp/lucas-standen-NEA/code/tokenizer/util.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/comp/lucas-standen-NEA/code/tokenizer/util.h b/comp/lucas-standen-NEA/code/tokenizer/util.h index cbcbdfa..c25ebec 100644 --- a/comp/lucas-standen-NEA/code/tokenizer/util.h +++ b/comp/lucas-standen-NEA/code/tokenizer/util.h @@ -1,3 +1,10 @@ +#include <stdio.h> +#include <string.h> +#include <stdlib.h> +#include <errno.h> +#include <error.h> + void Die(); // brings down the program void *CheckedMalloc(long size); // malloc checked void *CheckedRealloc(void *out, long size); // realloc checked +char **Split(char *s, char c); // splits a string into an array of strings around c |