mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 04:28:13 +00:00
LibC: Implemented mkstemp in stdlib
Implemented mkstemp method in stdlib.
This commit is contained in:
parent
48b1c82d53
commit
bda36853c9
2 changed files with 12 additions and 0 deletions
|
@ -382,6 +382,17 @@ char* mktemp(char* pattern)
|
|||
return pattern;
|
||||
}
|
||||
|
||||
int mkstemp(char* pattern)
|
||||
{
|
||||
char* path = mktemp(pattern);
|
||||
|
||||
int fd = open(path, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR); // I'm using the flags I saw glibc using.
|
||||
if (fd >= 0)
|
||||
return fd;
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
char* mkdtemp(char* pattern)
|
||||
{
|
||||
int length = strlen(pattern);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue