Raw
1 /*
2 * test-mktemp.c: code to exercise the creation of temporary files
3 */
4 #include "test-tool.h"
5 #include "git-compat-util.h"
6
7 int cmd__mktemp(int argc, const char **argv)
8 {
9 char *template;
10 int fd;
11
12 if (argc != 2)
13 usage("Expected 1 parameter defining the temporary file template");
14 template = xstrdup(argv[1]);
15
16 fd = xmkstemp(template);
17
18 close(fd);
19 free(template);
20 return 0;
21 }