14 lines
274 B
C
Raw Normal View History

2025-11-22 22:22:43 +01:00
#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