Yab2Cpp/runtime/runtime.h

24 lines
301 B
C
Raw Normal View History

/*
** Practice runtime header for Yab2Cpp
**
** by Samuel D. Crow
*/
#ifndef YAB_RUNTIME
#define YAB_RUNTIME
#include <string>
#include <cstdio>
using namespace std;
enum STATES:unsigned int
{
EXIT,
UNDEFINED_STATE_ERROR,
START
};
/* function prototype */
unsigned int run();
#endif