From 24f0781d2bd96ac333337ccb2168fb26b601db7a Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 29 Jan 2022 12:11:21 -0800 Subject: new library: luafilesystem (lfs) https://github.com/keplerproject/luafilesystem The new commander.tlv app demonstrates it working. --- src/lfs.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/lfs.h (limited to 'src/lfs.h') diff --git a/src/lfs.h b/src/lfs.h new file mode 100644 index 0000000..13b60a9 --- /dev/null +++ b/src/lfs.h @@ -0,0 +1,35 @@ +/* +** LuaFileSystem +** Copyright Kepler Project 2003 - 2020 +** (http://keplerproject.github.io/luafilesystem) +*/ + +/* Define 'chdir' for systems that do not implement it */ +#ifdef NO_CHDIR +#define chdir(p) (-1) +#define chdir_error "Function 'chdir' not provided by system" +#else +#define chdir_error strerror(errno) +#endif + +#ifdef _WIN32 +#define chdir(p) (_chdir(p)) +#define getcwd(d, s) (_getcwd(d, s)) +#define rmdir(p) (_rmdir(p)) +#define LFS_EXPORT __declspec (dllexport) +#ifndef fileno +#define fileno(f) (_fileno(f)) +#endif +#else +#define LFS_EXPORT +#endif + +#ifdef __cplusplus +extern "C" { +#endif + + LFS_EXPORT int luaopen_lfs(lua_State * L); + +#ifdef __cplusplus +} +#endif -- cgit 1.4.1-2-gfad0