summaryrefslogtreecommitdiff
path: root/src/utils/mkdir.h
diff options
context:
space:
mode:
authorBernd Wachter <bwachter-tmw@lart.info>2010-02-25 01:55:42 +0100
committerBernd Wachter <bwachter-tmw@lart.info>2010-02-25 02:34:44 +0100
commit57b7ac94b5b0fe2aca7f97d864e082cf67973614 (patch)
tree5a8fcca62968ad75188c3994773e504b3e4de4f4 /src/utils/mkdir.h
parent7d1e019808dced37434af7c7c14ed5569e87f50e (diff)
downloadmana-client-57b7ac94b5b0fe2aca7f97d864e082cf67973614.tar.gz
mana-client-57b7ac94b5b0fe2aca7f97d864e082cf67973614.tar.bz2
mana-client-57b7ac94b5b0fe2aca7f97d864e082cf67973614.tar.xz
mana-client-57b7ac94b5b0fe2aca7f97d864e082cf67973614.zip
Add a simple recursive mkdir
Reviewed-by: Jared Adams
Diffstat (limited to 'src/utils/mkdir.h')
-rw-r--r--src/utils/mkdir.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/utils/mkdir.h b/src/utils/mkdir.h
new file mode 100644
index 00000000..07f3dda4
--- /dev/null
+++ b/src/utils/mkdir.h
@@ -0,0 +1,26 @@
+/*
+ * The Mana Client
+ * Copyright (C) 2010 The Mana Developers
+ *
+ * This file is part of The Mana Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef _MKDIR_H
+#define _MKDIR_H
+
+int mkdir_r(char *pathname);
+
+#endif