shithub: mc

ref: af8bf2d89e9b7c066a13f450f71f800b562d78c0
dir: /lib/inifile/types.myr/

View raw version
use std

pkg inifile =
	type error = union
		`Fileerr
		`Parseerr int
		`Dupkey int
	;;

	type inifile = struct
		elts	: std.htab((byte[:], byte[:]), byte[:])#
	;;
;;