#ifndef INTERPRETER_H
|
|
#define INTERPRETER_H
|
|
|
|
void error(char *msg);
|
|
void match(int type);
|
|
int find_local(char *name, int len);
|
|
int find_func(char *name, int len);
|
|
int find_native_func(char *name, int len);
|
|
void statement();
|
|
void skip_block();
|
|
void scan_functions();
|
|
|
|
#endif
|