shithub: mc

ref: 034acf0ceac80411fc85bbd4cc9e237d26a6e36c
dir: /lib/std/memops.myr/

View raw version
use "types"

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