mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 23:58:50 +00:00
Update documentation for os2 once more!
This commit is contained in:
@@ -399,12 +399,18 @@ change_owner :: proc(name: string, uid, gid: int) -> Error {
|
||||
|
||||
fchdir :: fchange_directory
|
||||
|
||||
/*
|
||||
Changes the current working directory to the file, which must be a directory.
|
||||
*/
|
||||
fchange_directory :: proc(f: ^File) -> Error {
|
||||
return _fchdir(f)
|
||||
}
|
||||
|
||||
fchmod :: fchange_mode
|
||||
|
||||
/*
|
||||
Changes the current `mode` permissions of the file `f`.
|
||||
*/
|
||||
fchange_mode :: proc(f: ^File, mode: Permissions) -> Error {
|
||||
return _fchmod(f, mode)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user