Add a comment for make_dir.

This commit is contained in:
Reuben Thomas
2011-06-09 15:14:01 +01:00
parent fbdff8f1a5
commit de03ad370c

View File

@@ -354,6 +354,10 @@ static int file_unlock (lua_State *L) {
}
/*
** Creates a directory.
** @param #1 Directory path.
*/
static int make_dir (lua_State *L) {
const char *path = luaL_checkstring (L, 1);
int fail;