From 55be9b2227297433a055aed54e9def50ae8f99a3 Mon Sep 17 00:00:00 2001 From: carregal Date: Fri, 10 Mar 2006 22:38:11 +0000 Subject: Comments update - minor details --- src/lfs.c | 7 +++++-- src/lfs.h | 8 +++++++- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/lfs.c b/src/lfs.c index 9adf0c9..877fb1e 100644 --- a/src/lfs.c +++ b/src/lfs.c @@ -1,4 +1,7 @@ /* +** LuaFileSystem +** Copyright Kepler Project 2003-2006 (http://www.keplerproject.org/luafilesystem) +** ** File system manipulation library. ** This library offers these functions: ** lfs.attributes (filepath [, attributename]) @@ -11,7 +14,7 @@ ** lfs.touch (filepath [, atime [, mtime]]) ** lfs.unlock (fh) ** -** $Id: lfs.c,v 1.28 2006/03/07 19:07:57 tuler Exp $ +** $Id: lfs.c,v 1.29 2006/03/10 22:38:11 carregal Exp $ */ #include @@ -578,7 +581,7 @@ static int file_info (lua_State *L) { */ static void set_info (lua_State *L) { lua_pushliteral (L, "_COPYRIGHT"); - lua_pushliteral (L, "Copyright (C) 2003-2005 Kepler Project"); + lua_pushliteral (L, "Copyright (C) 2003-2006 Kepler Project"); lua_settable (L, -3); lua_pushliteral (L, "_DESCRIPTION"); lua_pushliteral (L, "LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution"); diff --git a/src/lfs.h b/src/lfs.h index 67871f2..8ab47a2 100644 --- a/src/lfs.h +++ b/src/lfs.h @@ -1,5 +1,11 @@ +/* +** LuaFileSystem +** Copyright Kepler Project 2003-2006 (http://www.keplerproject.org/luafilesystem) +** +** $Id: lfs.h,v 1.2 2006/03/10 22:38:11 carregal Exp $ +*/ + /* Define 'chdir' for systems that do not implement it */ -/* $Id: lfs.h,v 1.1 2004/07/29 14:26:33 tomas Exp $ */ #ifdef NO_CHDIR #define chdir(p) (-1) #define chdir_error "Function 'chdir' not provided by system" -- cgit v1.2.3-55-g6feb