shithub: mc

ref: fcb38bff6b06d23a3499bd13bc683754cb10dec0
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[:])#
	;;
;;