#ifndef TOKENIZER_H #define TOKENIZER_H #include <stdbool.h> #include "tokenizer/TokenStream.h" bool tokenize(TokenStream* tokenStream, const char* inputPath); #endif