#include "condparser.h"
#include "config.h"
#include "message.h"
Go to the source code of this file.
static bool isAlpha |
( |
const char |
c | ) |
|
|
static |
checks if the given char c is a letter or underscore
Definition at line 98 of file condparser.cpp.
100 return (
c>=
'A' &&
c<=
'Z') || (
c>=
'a' &&
c<=
'z') ||
c==
'_';
static bool isAlphaNum |
( |
const char |
c | ) |
|
|
static |
static bool isDelimiter |
( |
const char |
c | ) |
|
|
static |
checks if the given char c is a delimeter minus is checked apart, can be unary minus
Definition at line 90 of file condparser.cpp.
92 return c==
'&' ||
c==
'|' ||
c==
'!';