aboutsummaryrefslogtreecommitdiff
path: root/core/os/os2/temp_file_linux.odin
blob: dd7ac5c9758ff18d346c8e55a5e1fcb65f15633c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//+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
}