libk  Artifact [9c55c30fa9]

Artifact 9c55c30fa98cbb78d82c77d1a5854cbd091e6f82c653b836e6161f1cb7277ac5:


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