Files
stack_vm/run.h
2021-04-16 20:33:24 +05:00

10 lines
165 B
C

#ifndef RUN_H
#define RUN_H
#include "./stack.h"
#include "./command.h"
int run(command_t **buff, stack_t *stack);
int exec(command_t cmd, stack_t *stack);
#endif