aboutsummaryrefslogtreecommitdiff
path: root/core/os/os2/env_linux.odin
blob: eb463f22cd3ce00d2b878e4ef912a81ecc4a4101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//+private
package os2

import "base:runtime"

_lookup_env :: proc(key: string, allocator: runtime.Allocator) -> (value: string, found: bool) {
	//TODO
	return
}

_set_env :: proc(key, value: string) -> bool {
	//TODO
	return false
}

_unset_env :: proc(key: string) -> bool {
	//TODO
	return false
}

_clear_env :: proc() {
	//TODO
}

_environ :: proc(allocator: runtime.Allocator) -> []string {
	//TODO
	return nil
}