#ifndef TOKENIZER_H #define TOKENIZER_H #include #include #include #include "list.h" List* GetTokens(const char *); char* GetToken(char*); char* PeekNextToken(void); #endif