1 2 3 4 5 6 7 8 9 10 11 12
#ifndef NB_H #define NB_H typedef struct NbVM NbVM; typedef int(*NbCFunction) (NbVM* vm); typedef double NbDouble; typedef int NbInt; typedef int NbBool; #endif