[tokenization] scanner/tokenizer (generated with re2c)

This commit is contained in:
Al
2015-03-03 12:35:22 -05:00
parent 5216aba1b6
commit 0689f936c9
3 changed files with 283576 additions and 0 deletions

22
src/scanner.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef SCANNER_H
#define SCANNER_H
#ifdef __cplusplus
extern "C" {
#endif
#include "token_types.h"
#include "tokens.h"
tokenized_string_t *tokenize(const char *str);
#ifdef __cplusplus
}
#endif
#endif