mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-22 09:18:55 +00:00
LibCore: Add ErrorOr wrapper for utimensat
This commit is contained in:
parent
b5f0f94757
commit
e78be03b49
Notes:
sideshowbarker
2024-07-17 04:09:56 +09:00
Author: https://github.com/cammo1123
Commit: e78be03b49
Pull-request: https://github.com/SerenityOS/serenity/pull/17789
Reviewed-by: https://github.com/AtkinsSJ
Reviewed-by: https://github.com/caoimhebyrne
Reviewed-by: https://github.com/kleinesfilmroellchen ✅
Reviewed-by: https://github.com/linusg
Reviewed-by: https://github.com/pascalpuffke
Reviewed-by: https://github.com/timschumi ✅
2 changed files with 51 additions and 0 deletions
|
@ -172,6 +172,7 @@ ErrorOr<void> fchown(int fd, uid_t, gid_t);
|
|||
ErrorOr<void> rename(StringView old_path, StringView new_path);
|
||||
ErrorOr<void> unlink(StringView path);
|
||||
ErrorOr<void> utime(StringView path, Optional<struct utimbuf>);
|
||||
ErrorOr<void> utimensat(int fd, StringView path, struct timespec const times[2], int flag);
|
||||
ErrorOr<struct utsname> uname();
|
||||
ErrorOr<Array<int, 2>> pipe2(int flags);
|
||||
#ifndef AK_OS_ANDROID
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue