Differences From Artifact [7d0c94d714]:
- File mod/kcli/testbin.exe.c — part of check-in [c0e04b9015] at 2019-10-30 03:34:34 on branch trunk — begin work on kcli module; continue to build out infra for error explanation function (user: lexi, size: 209) [annotate] [blame] [check-ins using]
To Artifact [9c55c30fa9]:
- File mod/kcli/testbin.exe.c — part of check-in [8d6b36fcac] at 2019-10-30 07:44:12 on branch trunk — factor out write buffer code so any module and libk users can call it; update documentation to match; add kssz string length function (user: lexi, size: 219) [annotate] [blame] [check-ins using]
4 5 6 7 8 9 10 11 12 13 14 |
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;
}
|
| | |
4 5 6 7 8 9 10 11 12 13 14 |
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; } |