55Scan(
char * str,
char * c);
char IsId(char *str)
eck if string is Id or not
Definition scanner.c:1006
unsigned int CurrentTokenIdx
Definition scanner.h:45
PTOKEN GetToken(char *c, char *str)
reads a token from the input string
Definition scanner.c:22
PTOKEN_LIST FunctionParameterIdTable
Definition scanner.h:25
PTOKEN_LIST IdTable
lookup table for storing Ids
Definition scanner.h:20
char IsRegister(char *str)
Check if string is register or not.
Definition scanner.c:992
unsigned int InputIdx
number of read characters from input
Definition scanner.h:30
PTOKEN Scan(char *str, char *c)
Perform scanning the script engine.
Definition scanner.c:875
char IsKeyword(char *str)
Check whether a string is a keyword or not.
Definition scanner.c:963
unsigned int CurrentLine
number of current reading line
Definition scanner.h:35
unsigned int CurrentLineIdx
Definition scanner.h:40
char sgetc(char *str)
returns last character of string
Definition scanner.c:941
this structure is a dynamic container of TOKENS
Definition common.h:83
read tokens from input stored in this structure
Definition common.h:72