Files
Odin/core/os/os2/temp_file_linux.odin
T
jasonkercher 658a605c75 compiles
2022-03-04 17:11:53 -05:00

19 lines
320 B
Odin

//+private
package os2
_create_temp :: proc(dir, pattern: string) -> (Handle, Error) {
//TODO
return 0, nil
}
_mkdir_temp :: proc(dir, pattern: string, allocator := context.allocator) -> (string, Error) {
//TODO
return "", nil
}
_temp_dir :: proc(allocator := context.allocator) -> string {
//TODO
return ""
}