aboutsummaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2023-12-27 16:05:41 +0530
committersinanmohd <sinan@sinanmohd.com>2023-12-29 23:22:06 +0530
commit438ad16d03f38e0e444f6ad575078ee949679a86 (patch)
tree0688901d51b9b1736679ac92af5a4636d2553bed /util.c
repo: init
Diffstat (limited to 'util.c')
-rw-r--r--util.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/util.c b/util.c
new file mode 100644
index 0000000..6e6079e
--- /dev/null
+++ b/util.c
@@ -0,0 +1,33 @@
+#include <sys/stat.h>
+#include <string.h>
+#include <errno.h>
+#include <linux/limits.h>
+
+#include "util.h"
+
+int r_mkdir(const char *path, mode_t mode)
+{
+ int r;
+ size_t len;
+ char *p;
+ char tmp[NAME_MAX + 1];
+
+ strncpy(tmp, path, sizeof(tmp) - 1);
+ len = strlen(tmp);
+ if(tmp[len - 1] == '/')
+ tmp[len - 1] = '\0';
+
+ for (p = tmp + 1; *p; ++p) {
+ if (*p == '/') {
+ *p = '\0';
+
+ r = mkdir(tmp, mode);
+ if (r && !(errno & EEXIST))
+ return r;
+
+ *p = '/';
+ }
+ }
+
+ return mkdir(path, mode);
+}