blob: 402ceee9e08d0f1f236b0f5c6ec555a4dd2b3e1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* ISC license. */
#include <skalibs/stralloc.h>
#include <skalibs/djbunix.h>
int rm_rf_tmp (char const *filename, stralloc *tmp)
{
size_t 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 ;
}
|