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

11 lines
206 B
C

#ifndef CALCOP_H_
#define CALCOP_H_
#include "state.h"
void add(struct State* state);
void sub(struct State* state);
void mult(struct State* state);
void divide(struct State* state);
#endif // CALCOP_H_