~sircmpwn/hare-tar

72c4589ecfc57c046d738c81867a7bafa1d296ad — Sebastian 1 year, 5 months ago e698b5a
Remove char from language; add char to types::c

Signed-off-by: Sebastian <sebastian@sebsite.pw>
1 files changed, 1 insertions(+), 1 deletions(-)

M reader.ha
M reader.ha => reader.ha +1 -1
@@ 207,7 207,7 @@ fn readstr(rd: *bufio::memstream, ln: size) str = {
	case io::EOF =>
		abort();
	};
	return c::tostr(buf: *[*]u8: *const char)!;
	return c::tostr(buf: *[*]u8: *const c::char)!;
};

fn readoct(rd: *bufio::memstream, ln: size) (uint | invalid) = {