libk  testbin.exe.c at [c0e04b9015]

File mod/kcli/testbin.exe.c artifact 7d0c94d714 part of check-in c0e04b9015


#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",
	};

	kcli_usage(testbin, e.err);

	return 0;
}