Cosmo/src/cbaselib.h

12 lines
309 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 int cosmoB_print(CState *state, int nargs, CValue *args);
COSMO_API int cosmoB_assert(CState *state, int nargs, CValue *args);
2020-10-28 05:16:30 +00:00
2021-01-02 05:06:24 +00:00
#endif