mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
LibC: Implemented mkstemp in stdlib
Implemented mkstemp method in stdlib.
This commit is contained in:
parent
48b1c82d53
commit
bda36853c9
Notes:
sideshowbarker
2024-07-19 11:12:03 +09:00
Author: https://github.com/xeons Commit: https://github.com/SerenityOS/serenity/commit/bda36853c98 Pull-request: https://github.com/SerenityOS/serenity/pull/788 Reviewed-by: https://github.com/awesomekling ✅
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);
|
||||
|
|
|
@ -41,6 +41,7 @@ long labs(long);
|
|||
double atof(const char*);
|
||||
int system(const char* command);
|
||||
char* mktemp(char*);
|
||||
int mkstemp(char*);
|
||||
char* mkdtemp(char*);
|
||||
void* bsearch(const void* key, const void* base, size_t nmemb, size_t size, int (*compar)(const void*, const void*));
|
||||
size_t mbstowcs(wchar_t*, const char*, size_t);
|
||||
|
|
Loading…
Add table
Reference in a new issue