stack_vm/command.h

11 lines
106 B
C

#ifndef COMMAND_H
#define COMMAND_H
enum command_e
{
NONE
};
typedef enum command_e command_t;
#endif