shithub: mc

ref: 4db5274a2f6db10e31e11c503f36c85a98c65fbc
dir: /lib/std/memops.myr/

View raw version
use "types"

pkg std =
	extern const memblit	: (dst : byte#, src : byte#, len : std.size -> void)
	extern const memfill	: (dst : byte#, val : byte, len : std.size -> void)
	extern const memeq	: (a : byte#, b : byte#, len : std.size -> bool)
;;