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

11 satır
222 B
C

#ifndef STACKOPS_H_
#define STACKOPS_H_
#include "state.h"
void dropCmd(struct State* state);
void dupCmd(struct State* state);
void swapCmd(struct State* state);
void rotCmd(struct State* state);
#endif // STACKOPS_H_