aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2011-06-09 15:14:01 +0100
committerReuben Thomas <rrt@sc3d.org>2011-06-09 19:53:41 +0100
commitde03ad370c2d25e07b39a62cf3456c3e616a1f1f (patch)
treef4e5c3c859f8ae313a082630cdb3f605ed3619ff
parentfbdff8f1a56c229fd461b2318e755d16d88adcb4 (diff)
downloadluafilesystem-de03ad370c2d25e07b39a62cf3456c3e616a1f1f.tar.gz
luafilesystem-de03ad370c2d25e07b39a62cf3456c3e616a1f1f.tar.bz2
luafilesystem-de03ad370c2d25e07b39a62cf3456c3e616a1f1f.zip
Add a comment for make_dir.
-rw-r--r--src/lfs.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lfs.c b/src/lfs.c
index ac3e712..dd41df8 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -354,6 +354,10 @@ static int file_unlock (lua_State *L) {
354} 354}
355 355
356 356
357/*
358** Creates a directory.
359** @param #1 Directory path.
360*/
357static int make_dir (lua_State *L) { 361static int make_dir (lua_State *L) {
358 const char *path = luaL_checkstring (L, 1); 362 const char *path = luaL_checkstring (L, 1);
359 int fail; 363 int fail;