shithub: mc

ref: b9cf124f492b69a0c76c9cb89d07a046c0e6c7e8
dir: /lib/fileutil/loopcheck+plan9.myr/

View raw version
use std

/* plan 9 can't have directory loops, by construction, so this is nops */
pkg fileutil =
	type loopcheck = void

	const mkloopcheck	: (cwd : byte[:] -> loopcheck)
	const freeloopcheck	: (l : loopcheck -> void)
	const looped	: (l : loopcheck, p : byte[:] -> bool)
;;

const mkloopcheck = {cwd
	-> (void : loopcheck)
}

const freeloopcheck = {l
}

const looped = {l, p
	-> false
}