7#define SCRIPT_CS_NONE 0
8#define SCRIPT_CS_COMMENT 1
10#define script_char_alpha( c ) (96 < c && 123 > c)
12void script_cmp_case(
char* token,
size_t token_sz );
13void script_cmp_action(
char* token,
size_t token_sz,
struct SCRIPT_STEP* s );
14int16_t script_arg_special(
char* token,
size_t token_sz );
20#define SCRIPT_CB_TABLE_TOKEN( idx, name, c ) #name,
23const char* gc_sc_tokens[] = {
28#define SCRIPT_CB_TABLE_BYTE( idx, name, c ) c,
30const char gc_sc_bytes[] = {
37extern const char* gc_sc_tokens[];
38extern const char gc_sc_bytes[];
#define SCRIPT_CB_TABLE(f)
NOOP: Not a valid instruction. Beginning of the script callback table, used to implement script parsi...
Definition: script.h:468
Definition: scstruct.h:49
Contains a single instruction in a script, in SCRIPT::steps.
Definition: scstruct.h:21