ref: 6c0e6856de4a72b7d6ab99a184d213b18a3dea14
dir: /lib/fileutil/homedir.myr/
use std
pkg fileutil =
const homedir : (-> byte[:])
;;
const homedir = {
match std.getenv("HOME")
| `std.Some h: -> h
| `std.None: /* nothing */
;;
/* 9front uses $home */
match std.getenv("home")
| `std.Some h: -> h
| `std.None: /* nothing */
;;
/* really, we should read from /etc/passwd or ldap/nss */
-> ""
}