diff options
author | Peter Melnichenko <mpeterval@gmail.com> | 2016-05-04 13:35:55 +0300 |
---|---|---|
committer | Peter Melnichenko <mpeterval@gmail.com> | 2016-05-04 13:35:55 +0300 |
commit | 5220452e3b5898be05f5d4e8c8cfbb46f06ede96 (patch) | |
tree | e3dccb22cc6bb388e90df840cf46961ed157485a | |
parent | 12d1f260f3dca44d0d7b89d2c5d1b6f9c310bbf1 (diff) | |
download | luafilesystem-5220452e3b5898be05f5d4e8c8cfbb46f06ede96.tar.gz luafilesystem-5220452e3b5898be05f5d4e8c8cfbb46f06ede96.tar.bz2 luafilesystem-5220452e3b5898be05f5d4e8c8cfbb46f06ede96.zip |
Update top level comments
-rw-r--r-- | src/lfs.c | 7 | ||||
-rw-r--r-- | src/lfs.h | 4 |
2 files changed, 4 insertions, 7 deletions
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | ** LuaFileSystem | 2 | ** LuaFileSystem |
3 | ** Copyright Kepler Project 2003 (http://www.keplerproject.org/luafilesystem) | 3 | ** Copyright Kepler Project 2003 - 2016 (http://keplerproject.github.io/luafilesystem) |
4 | ** | 4 | ** |
5 | ** File system manipulation library. | 5 | ** File system manipulation library. |
6 | ** This library offers these functions: | 6 | ** This library offers these functions: |
@@ -8,16 +8,15 @@ | |||
8 | ** lfs.chdir (path) | 8 | ** lfs.chdir (path) |
9 | ** lfs.currentdir () | 9 | ** lfs.currentdir () |
10 | ** lfs.dir (path) | 10 | ** lfs.dir (path) |
11 | ** lfs.link (old, new[, symlink]) | ||
11 | ** lfs.lock (fh, mode) | 12 | ** lfs.lock (fh, mode) |
12 | ** lfs.lock_dir (path) | 13 | ** lfs.lock_dir (path) |
13 | ** lfs.mkdir (path) | 14 | ** lfs.mkdir (path) |
14 | ** lfs.rmdir (path) | 15 | ** lfs.rmdir (path) |
15 | ** lfs.setmode (filepath, mode) | 16 | ** lfs.setmode (filepath, mode) |
16 | ** lfs.symlinkattributes (filepath [, attributename]) -- thanks to Sam Roberts | 17 | ** lfs.symlinkattributes (filepath [, attributename]) |
17 | ** lfs.touch (filepath [, atime [, mtime]]) | 18 | ** lfs.touch (filepath [, atime [, mtime]]) |
18 | ** lfs.unlock (fh) | 19 | ** lfs.unlock (fh) |
19 | ** | ||
20 | ** $Id: lfs.c,v 1.61 2009/07/04 02:10:16 mascarenhas Exp $ | ||
21 | */ | 20 | */ |
22 | 21 | ||
23 | #ifndef LFS_DO_NOT_USE_LARGE_FILE | 22 | #ifndef LFS_DO_NOT_USE_LARGE_FILE |
@@ -1,8 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | ** LuaFileSystem | 2 | ** LuaFileSystem |
3 | ** Copyright Kepler Project 2003 (http://www.keplerproject.org/luafilesystem) | 3 | ** Copyright Kepler Project 2003 - 2016 (http://keplerproject.github.io/luafilesystem) |
4 | ** | ||
5 | ** $Id: lfs.h,v 1.5 2008/02/19 20:08:23 mascarenhas Exp $ | ||
6 | */ | 4 | */ |
7 | 5 | ||
8 | /* Define 'chdir' for systems that do not implement it */ | 6 | /* Define 'chdir' for systems that do not implement it */ |