11 lignes
222 o
C
11 lignes
222 o
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_
|