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

15 satır
270 B
C

#ifndef LOGIC_H_
#define LOGIC_H_
#include "state.h"
void initLogic();
void ifCmd(struct State* state);
void elseCmd(struct State* state);
void thenCmd(struct State* state);
void beginCmd(struct State* state);
void untilCmd(struct State* state);
#endif // LOGIC_H_