aboutsummaryrefslogtreecommitdiff
path: root/src/lfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lfs.c')
-rw-r--r--src/lfs.c23
1 files changed, 4 insertions, 19 deletions
diff --git a/src/lfs.c b/src/lfs.c
index fb5e825..e5e5ee4 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -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*/
1142static void set_info(lua_State * L) 1129static 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 "