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 4 stat 5 5 entry (kenv e) { 6 6 kcli_set testbin = { 7 7 "testbin", "1.0.0", e.args, e.argc, 8 8 "this is a test of the kcli module", 9 9 }; 10 10 11 - kcli_usage(testbin, e.err); 11 + kcond c = kcli_usage(testbin, e.err); 12 12 13 - return 0; 13 + return c; 14 14 }