82: ((c) >= 'a' && (c) <= 'z') )
83: #define isAlNum(c) (isNum(c) || isAlpha(c))
84: #define isSym(c) (isAlpha(c) || c == '$' || c == '_' ||\
262:
263: if (isNum(c)) { // simple number
264: if (c != '0' || (*lptr != 'x' && *lptr != 'X')) {
278: // if the end of the numeric value is alphanumeric letter, then it is regarded as illegal numeric format.
279: i = (isSym(c) || isNum(c)) ? tERNUM : tNUM;
280: goto EXIT;
284: tokenStr = --lptr;
285: for (i = 0; isSym(c) || isNum(c) || isExtSym(c); c = *++lptr) {
286: // set to tokenSym[] in capital letters