From fa02225c5ae8b704408769c70bb47101042762b8 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 20 Feb 2022 18:48:30 +0100 Subject: Haskell ftw --- inc/tokenize.h | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 inc/tokenize.h (limited to 'inc/tokenize.h') diff --git a/inc/tokenize.h b/inc/tokenize.h deleted file mode 100644 index 61fcd67..0000000 --- a/inc/tokenize.h +++ /dev/null @@ -1,40 +0,0 @@ -#ifndef TOKENIZE_H -#define TOKENIZE_H - -#include - -#define TOKENS_MAX 4096 - -enum token_type { - UNKNOWN, - - TYPE, - TYPEDELIM, - - IDENT, - IDENTDELIM, - PARAM, - - STRING, - NUMBER, - OPERATOR, - - LPAREN, - RPAREN, - - NEWLINE, - END, - - SOMETHING, -}; - -struct token { - enum token_type type; - struct ctx_location location; - ctx_string string; -}; - -void token_print(struct ctx *ctx, struct token *token); -void tokenize(struct ctx *ctx); - -#endif -- cgit v1.2.3