libk  testbin.exe.c at [8d6b36fcac]

File mod/kcli/testbin.exe.c artifact 9c55c30fa9 part of check-in 8d6b36fcac


#include <k/core.h>
#include <k/cli.h>

stat
entry (kenv e) {
	kcli_set testbin = {
		"testbin", "1.0.0", e.args, e.argc,
		"this is a test of the kcli module",
	};

	kcond c = kcli_usage(testbin, e.err);

	return c;
}