diff options
| author | Hisham Muhammad <hisham@gobolinux.org> | 2022-07-26 12:40:59 -0300 |
|---|---|---|
| committer | Hisham Muhammad <hisham@gobolinux.org> | 2022-07-26 12:40:59 -0300 |
| commit | 912e06714fc276c15b4d5d1b42bd2b11edb8deff (patch) | |
| tree | b9ed0919d1019349f19170e1904a432a30eae728 /src | |
| parent | e4eae33de5045e644c77fc3e1ae9b8373c82a1a2 (diff) | |
| download | luafilesystem-912e06714fc276c15b4d5d1b42bd2b11edb8deff.tar.gz luafilesystem-912e06714fc276c15b4d5d1b42bd2b11edb8deff.tar.bz2 luafilesystem-912e06714fc276c15b4d5d1b42bd2b11edb8deff.zip | |
keplerproject -> lunarmodules
Diffstat (limited to 'src')
| -rw-r--r-- | src/lfs.c | 23 | ||||
| -rw-r--r-- | src/lfs.h | 7 |
2 files changed, 9 insertions, 21 deletions
| @@ -1,23 +1,10 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaFileSystem | 2 | ** LuaFileSystem |
| 3 | ** Copyright Kepler Project 2003 - 2020 | 3 | ** File system manipulation library |
| 4 | ** (http://keplerproject.github.io/luafilesystem) | ||
| 5 | ** | 4 | ** |
| 6 | ** File system manipulation library. | 5 | ** Copyright (C) 2003-2010 Kepler Project. |
| 7 | ** This library offers these functions: | 6 | ** Copyright (C) 2010-2022 The LuaFileSystem authors. |
| 8 | ** lfs.attributes (filepath [, attributename | attributetable]) | 7 | ** (http://lunarmodules.github.io/luafilesystem) |
| 9 | ** lfs.chdir (path) | ||
| 10 | ** lfs.currentdir () | ||
| 11 | ** lfs.dir (path) | ||
| 12 | ** lfs.link (old, new[, symlink]) | ||
| 13 | ** lfs.lock (fh, mode) | ||
| 14 | ** lfs.lock_dir (path) | ||
| 15 | ** lfs.mkdir (path) | ||
| 16 | ** lfs.rmdir (path) | ||
| 17 | ** lfs.setmode (filepath, mode) | ||
| 18 | ** lfs.symlinkattributes (filepath [, attributename]) | ||
| 19 | ** lfs.touch (filepath [, atime [, mtime]]) | ||
| 20 | ** lfs.unlock (fh) | ||
| 21 | */ | 8 | */ |
| 22 | 9 | ||
| 23 | #ifndef LFS_DO_NOT_USE_LARGE_FILE | 10 | #ifndef LFS_DO_NOT_USE_LARGE_FILE |
| @@ -1141,8 +1128,6 @@ static int link_info(lua_State * L) | |||
| 1141 | */ | 1128 | */ |
| 1142 | static void set_info(lua_State * L) | 1129 | static void set_info(lua_State * L) |
| 1143 | { | 1130 | { |
| 1144 | lua_pushliteral(L, "Copyright (C) 2003-2017 Kepler Project"); | ||
| 1145 | lua_setfield(L, -2, "_COPYRIGHT"); | ||
| 1146 | lua_pushliteral(L, | 1131 | lua_pushliteral(L, |
| 1147 | "LuaFileSystem is a Lua library developed to complement " | 1132 | "LuaFileSystem is a Lua library developed to complement " |
| 1148 | "the set of functions related to file systems offered by " | 1133 | "the set of functions related to file systems offered by " |
| @@ -1,7 +1,10 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaFileSystem | 2 | ** LuaFileSystem |
| 3 | ** Copyright Kepler Project 2003 - 2020 | 3 | ** File system manipulation library |
| 4 | ** (http://keplerproject.github.io/luafilesystem) | 4 | ** |
| 5 | ** Copyright (C) 2003-2010 Kepler Project. | ||
| 6 | ** Copyright (C) 2010-2022 The LuaFileSystem authors. | ||
| 7 | ** (http://lunarmodules.github.io/luafilesystem) | ||
| 5 | */ | 8 | */ |
| 6 | 9 | ||
| 7 | /* Define 'chdir' for systems that do not implement it */ | 10 | /* Define 'chdir' for systems that do not implement it */ |
