2011-02-12 00:22:29 -05:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include "libc.h"
|
|
|
|
|
2011-02-14 19:18:06 -05:00
|
|
|
char *__mktemp(char *template)
|
2011-02-12 00:22:29 -05:00
|
|
|
{
|
|
|
|
static int lock;
|
|
|
|
static int index;
|
|
|
|
int l = strlen(template);
|
|
|
|
|
|
|
|
if (l < 6 || strcmp(template+l-6, "XXXXXX")) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
LOCK(&lock);
|
|
|
|
for (; index < 1000000; index++) {
|
|
|
|
snprintf(template+l-6, 6, "%06d", index);
|
|
|
|
if (access(template, F_OK) != 0) {
|
|
|
|
UNLOCK(&lock);
|
|
|
|
return template;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
UNLOCK(&lock);
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-02-14 19:18:06 -05:00
|
|
|
|
|
|
|
weak_alias(__mktemp, mktemp);
|