diff --git a/TestTok.cpp b/TestTok.cpp deleted file mode 100644 index 398806e0a..000000000 --- a/TestTok.cpp +++ /dev/null @@ -1,40 +0,0 @@ - -// Internal testing -// Tokenize a file and print tokens - -#include -#include "tokenize.h" - -//--------------------------------------------------------------------------- - -int main(int argc, char* argv[]) -{ - if (argc != 2) - return 0; - - tokens = tokens_back = NULL; - Tokenize(argv[1]); - SimplifyTokenList(); - - unsigned int linenr = 0; - for (TOKEN *tok = tokens; tok; tok = tok->next) - { - // Print either a "\n" or a " " - if (tok->linenr != linenr) - std::cout << "\n"; - else - std::cout << " "; - - std::cout << tok->str; - - linenr = tok->linenr; - } - - - // Delete all tokens.. - DeallocateTokens(); - - return 0; -} -//--------------------------------------------------------------------------- -