Cosmo/src/cbaselib.h

11 lines
243 B
C
Raw Normal View History

2020-10-28 05:16:30 +00:00
#ifndef COSMO_BASELIB
#define COSMO_BASELIB
#include "cstate.h"
2020-11-13 05:04:09 +00:00
COSMO_API void cosmoB_loadLibrary(CState *state);
COSMO_API void cosmoB_loadDebug(CState *state);
COSMO_API CValue cosmoB_print(CState *state, int nargs, CValue *args);
2020-10-28 05:16:30 +00:00
#endif