C_TP_Forth/functions.h
2022-12-08 06:11:40 +01:00

13 líneas
242 B
C

#ifndef FUNCTIONS_H_
#define FUNCTIONS_H_
#include "state.h"
void initFunctions();
int tryCallFunctions(char* func, struct State* state);
void colonCmd(struct State* state);
void semicolonCmd(struct State* state);
#endif // FUNCTIONS_H_