summaryrefslogtreecommitdiff
path: root/src/libstddjb/openwritenclose_suffix6.c
blob: be92a870ac23ac3d8d4d327b7636af66815903a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ISC license. */

#include <string.h>
#include <stdio.h>

#include <skalibs/posixplz.h>
#include <skalibs/djbunix.h>

int openwritenclose_suffix6 (char const *fn, char const *s, size_t n, devino *devino, unsigned int options, char const *suffix)
{
  size_t len = strlen(fn) ;
  size_t suffixlen = strlen(suffix) ;
  char tmp[len + suffixlen + 1] ;
  memcpy(tmp, fn, len) ;
  memcpy(tmp + len, suffix, suffixlen + 1) ;
  if (!openwritenclose_unsafe5(tmp, s, n, devino, options)) return 0 ;	
  if (rename(tmp, fn) < 0)
  {
    unlink_void(tmp) ;
    return 0 ;
  }
  return 1 ;
}