mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-11 12:06:07 +00:00
Kernel+LibC+LibCore: Implement renameat(2)
Now with the ability to specify different bases for the old and new paths.
This commit is contained in:
parent
eb5389e933
commit
d5fbdf1866
Notes:
sideshowbarker
2024-07-17 06:40:21 +09:00
Author: https://github.com/sin-ack
Commit: d5fbdf1866
Pull-request: https://github.com/SerenityOS/serenity/pull/15428
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/AtkinsSJ
Reviewed-by: https://github.com/BertalanD
Reviewed-by: https://github.com/linusg
Reviewed-by: https://github.com/timschumi
7 changed files with 17 additions and 6 deletions
|
@ -96,6 +96,7 @@ int setvbuf(FILE*, char* buf, int mode, size_t);
|
|||
void setbuf(FILE*, char* buf);
|
||||
void setlinebuf(FILE*);
|
||||
int rename(char const* oldpath, char const* newpath);
|
||||
int renameat(int olddirfd, char const* oldpath, int newdirfd, char const* newpath);
|
||||
FILE* tmpfile(void);
|
||||
char* tmpnam(char*);
|
||||
FILE* popen(char const* command, char const* type);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue