Initial commit

This commit is contained in:
2020-10-28 00:16:30 -05:00
commit 2e1b745624
34 changed files with 3540 additions and 0 deletions

9
src/cbaselib.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef COSMO_BASELIB
#define COSMO_BASELIB
#include "cstate.h"
COSMO_API void cosmoB_loadlibrary(CState *state);
COSMO_API int cosmoB_print(CState *state, int nargs, CValue *args);
#endif