mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-14 09:52:23 -07:00
21 lines
354 B
Odin
21 lines
354 B
Odin
//+private
|
|
package os2
|
|
|
|
import "base: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
|
|
}
|