Move fs.basename and fs.dirname into the path library, create errors.h

This commit is contained in:
Jeremy Baxter 2023-08-10 08:14:05 +12:00
parent 18597a772e
commit 7ff02fbbb1
6 changed files with 142 additions and 95 deletions

View file

@ -24,6 +24,7 @@
#define CALLISTO_JSONLIBNAME "json"
#define CALLISTO_MATHLIBNAME "math"
#define CALLISTO_OSLIBNAME "os"
#define CALLISTO_PATHLIBNAME "path"
#define CALLISTO_PROCLIBNAME "process"
#define CALLISTO_SOCKLIBNAME "socket"
@ -34,6 +35,9 @@ int luaopen_environ(lua_State *);
int luaopen_extra(lua_State *);
int luaopen_fs(lua_State *);
int luaopen_json(lua_State *);
/* luaopen_math and luaopen_os
* are provided by Lua */
int luaopen_path(lua_State *);
int luaopen_process(lua_State *);
int luaopen_socket(lua_State *);