Tokenizer.h 170 B

12345678910
  1. #ifndef TOKENIZER_H
  2. #define TOKENIZER_H
  3. #include <stdbool.h>
  4. #include "tokenizer/TokenStream.h"
  5. bool tokenize(TokenStream* tokenStream, const char* inputPath);
  6. #endif