shithub: mc

ref: 3450935eec9aa87ac23f8b6524a2c9a873105041
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)
;;