aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Melnichenko <mpeterval@gmail.com>2016-05-04 13:35:55 +0300
committerPeter Melnichenko <mpeterval@gmail.com>2016-05-04 13:35:55 +0300
commit5220452e3b5898be05f5d4e8c8cfbb46f06ede96 (patch)
treee3dccb22cc6bb388e90df840cf46961ed157485a
parent12d1f260f3dca44d0d7b89d2c5d1b6f9c310bbf1 (diff)
downloadluafilesystem-5220452e3b5898be05f5d4e8c8cfbb46f06ede96.tar.gz
luafilesystem-5220452e3b5898be05f5d4e8c8cfbb46f06ede96.tar.bz2
luafilesystem-5220452e3b5898be05f5d4e8c8cfbb46f06ede96.zip
Update top level comments
-rw-r--r--src/lfs.c7
-rw-r--r--src/lfs.h4
2 files changed, 4 insertions, 7 deletions
diff --git a/src/lfs.c b/src/lfs.c
index 9720d8b..96d6f9e 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -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
diff --git a/src/lfs.h b/src/lfs.h
index ea1720d..a621d04 100644
--- a/src/lfs.h
+++ b/src/lfs.h
@@ -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 */