ref: 8a92415ad8220c1f651b0ed6338efb072e848d5c
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 */
-> ""
}