shithub: mc

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

View raw version
use std

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

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