2000-08-28 00:45:40 +00:00
|
|
|
void GIB_AddInstruction (char *name, gib_func_t func);
|
|
|
|
gib_inst_t *GIB_Find_Instruction (char *name);
|
|
|
|
void GIB_Init_Instructions (void);
|
|
|
|
int GIB_Echo_f (void);
|
|
|
|
int GIB_Call_f (void);
|
|
|
|
int GIB_VarPrint_f (void);
|
|
|
|
int GIB_Return_f (void);
|
2000-08-28 20:49:01 +00:00
|
|
|
int GIB_VarSub_f (void);
|
|
|
|
int GIB_Con_f (void);
|
|
|
|
int GIB_Eval_f (void);
|
|
|
|
int GIB_ListFetch_f (void);
|
|
|
|
int GIB_BackTick_f (void);
|
|
|
|
int GIB_ExpandVars (char *source, char *buffer, int bufferlen);
|
|
|
|
int GIB_ExpandBackticks (char *source, char *buffer, int bufferlen);
|