added type() to baselib

This commit is contained in:
2021-01-02 14:33:11 -06:00
parent 0b415ad49d
commit cb1d287c93
3 changed files with 45 additions and 27 deletions

View File

@@ -7,5 +7,6 @@ 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);
COSMO_API int cosmoB_type(CState *state, int nargs, CValue *args);
#endif