2021-03-24 18:17:33 -05:00
|
|
|
/*
|
|
|
|
** Practice runtime header for Yab2Cpp
|
|
|
|
**
|
|
|
|
** by Samuel D. Crow
|
|
|
|
*/
|
|
|
|
#ifndef YAB_RUNTIME
|
2021-03-25 14:38:17 -05:00
|
|
|
#define YAB_RUNTIME
|
2021-03-24 18:17:33 -05:00
|
|
|
|
2021-03-25 14:38:17 -05:00
|
|
|
#include <string>
|
2021-03-24 18:17:33 -05:00
|
|
|
#include <cstdio>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
enum STATES:unsigned int
|
|
|
|
{
|
|
|
|
EXIT,
|
|
|
|
UNDEFINED_STATE_ERROR,
|
|
|
|
START
|
|
|
|
};
|
|
|
|
|
|
|
|
/* function prototype */
|
|
|
|
unsigned int run();
|
|
|
|
|
|
|
|
#endif
|