summaryrefslogtreecommitdiff
path: root/src/libstddjb/rm_rf_tmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstddjb/rm_rf_tmp.c')
-rw-r--r--src/libstddjb/rm_rf_tmp.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/libstddjb/rm_rf_tmp.c b/src/libstddjb/rm_rf_tmp.c
new file mode 100644
index 0000000..6e434d7
--- /dev/null
+++ b/src/libstddjb/rm_rf_tmp.c
@@ -0,0 +1,18 @@
+/* ISC license. */
+
+#include <skalibs/stralloc.h>
+#include <skalibs/djbunix.h>
+
+int rm_rf_tmp (char const *filename, stralloc *tmp)
+{
+ unsigned int tmpbase = tmp->len ;
+ if (!stralloc_cats(tmp, filename)) return -1 ;
+ if (!stralloc_0(tmp)) goto err ;
+ if (rm_rf_in_tmp(tmp, tmpbase) == -1) goto err ;
+ tmp->len = tmpbase ;
+ return 0 ;
+
+err:
+ tmp->len = tmpbase ;
+ return -1 ;
+}