This commit is contained in:
jasonkercher
2022-03-04 17:11:53 -05:00
parent e51bb4ef12
commit 658a605c75
11 changed files with 557 additions and 88 deletions
+18
View File
@@ -0,0 +1,18 @@
//+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 ""
}