Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keplerproject/luafilesystem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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)
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 @@
/*
** LuaFileSystem
-** Copyright Kepler Project 2003 (http://www.keplerproject.org/luafilesystem)
+** Copyright Kepler Project 2003 - 2016 (http://keplerproject.github.io/luafilesystem)
**
** File system manipulation library.
** This library offers these functions:
@@ -8,16 +8,15 @@
** lfs.chdir (path)
** lfs.currentdir ()
** lfs.dir (path)
+** lfs.link (old, new[, symlink])
** lfs.lock (fh, mode)
** lfs.lock_dir (path)
** lfs.mkdir (path)
** lfs.rmdir (path)
** lfs.setmode (filepath, mode)
-** lfs.symlinkattributes (filepath [, attributename]) -- thanks to Sam Roberts
+** lfs.symlinkattributes (filepath [, attributename])
** lfs.touch (filepath [, atime [, mtime]])
** lfs.unlock (fh)
-**
-** $Id: lfs.c,v 1.61 2009/07/04 02:10:16 mascarenhas Exp $
*/
#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 @@
/*
** LuaFileSystem
-** Copyright Kepler Project 2003 (http://www.keplerproject.org/luafilesystem)
-**
-** $Id: lfs.h,v 1.5 2008/02/19 20:08:23 mascarenhas Exp $
+** Copyright Kepler Project 2003 - 2016 (http://keplerproject.github.io/luafilesystem)
*/
/* Define 'chdir' for systems that do not implement it */