#include <cctype>#include <cmath>#include <iomanip>#include <celutil/utf8.h>#include "tokenizer.h"Include dependency graph for tokenizer.cpp:

Go to the source code of this file.
Functions | |
| static bool | issep (char c) |
|
|
Definition at line 17 of file tokenizer.cpp. Referenced by celx::Scanner::nextToken(), and Tokenizer::nextToken(). 00018 {
00019 return !isdigit(c) && !isalpha(c) && c != '.';
00020 }
|
1.4.1