overhaul internally-public declarations using wrapper headers
[musl] / src / temp / mkostemps.c
1 #define _BSD_SOURCE
2 #include <stdlib.h>
3 #include <string.h>
4 #include <fcntl.h>
5 #include <unistd.h>
6 #include <errno.h>
7 #include "libc.h"
8
9 int __mkostemps(char *template, int len, int flags)
10 {
11         size_t l = strlen(template);
12         if (l<6 || len>l-6 || memcmp(template+l-len-6, "XXXXXX", 6)) {
13                 errno = EINVAL;
14                 return -1;
15         }
16
17         flags -= flags & O_ACCMODE;
18         int fd, retries = 100;
19         do {
20                 __randname(template+l-len-6);
21                 if ((fd = open(template, flags | O_RDWR | O_CREAT | O_EXCL, 0600))>=0)
22                         return fd;
23         } while (--retries && errno == EEXIST);
24
25         memcpy(template+l-len-6, "XXXXXX", 6);
26         return -1;
27 }
28
29 weak_alias(__mkostemps, mkostemps);
30 weak_alias(__mkostemps, mkostemps64);