blob: cc1b303ac4f6084c3ed796cc3110fe3b46ce2ee4 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
use "alloc"
use "slcp"
use "die"
use "sldup"
use "strfind"
use "option"
use "types"
use "memops"
pkg std =
const dirname : (p : byte[:] -> byte[:])
const basename : (p : byte[:] -> byte[:])
;;
extern const put : (fmt : byte[:], args : ... -> size)
const dirname = {p
var end
for end = p.len; end > 1; end--
if p[end-1] != ('/' : byte)
break
;;
;;
p = p[:end]
match std.strrfind(p, "/")
| `std.None: -> std.sldup(".")
| `std.Some 0: -> std.sldup("/")
| `std.Some i: -> std.sldup(p[:i])
;;
}
const basename = {p
var end
for end = p.len; end > 1; end--
if p[end-1] != ('/' : byte)
break
;;
;;
p = p[:end]
match std.strrfind(p, "/")
| `std.None: -> std.sldup(p[:end])
| `std.Some i: -> std.sldup(p[i+1:end])
;;
}
|