10 lines
146 B
C
10 lines
146 B
C
#ifndef TOKENIZER_H
|
|
#define TOKENIZER_H
|
|
|
|
#include "array.h"
|
|
#include "dictionary.h"
|
|
#include "token.h"
|
|
|
|
Array* Tokenize(const char* text);
|
|
|
|
#endif |