mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 17:32:22 -07:00
21 lines
354 B
Odin
21 lines
354 B
Odin
//+private
|
|
package os2
|
|
|
|
import "core:runtime"
|
|
|
|
|
|
_create_temp :: proc(dir, pattern: string) -> (^File, Error) {
|
|
//TODO
|
|
return nil, nil
|
|
}
|
|
|
|
_mkdir_temp :: proc(dir, pattern: string, allocator: runtime.Allocator) -> (string, Error) {
|
|
//TODO
|
|
return "", nil
|
|
}
|
|
|
|
_temp_dir :: proc(allocator: runtime.Allocator) -> (string, Error) {
|
|
//TODO
|
|
return "", nil
|
|
}
|