Removed noise from test output
This commit is contained in:
parent
a508e4236e
commit
d044cb1567
3 changed files with 11 additions and 9 deletions
|
@ -117,9 +117,11 @@ int main(int argc, char const *argv[]) {
|
|||
char c[option->content.length + 1];
|
||||
memset(c, 0, option->content.length + 1);
|
||||
memcpy(c, option->content.source, option->content.length);
|
||||
printf("%-20s: %s\n",
|
||||
printf(
|
||||
"%-20s: %s\n",
|
||||
OptionType_ToString(option->type),
|
||||
c);
|
||||
c
|
||||
);
|
||||
}
|
||||
|
||||
if (Argumentc_PopLongOption(&argumentc, StringView_FromString("long")).type != OPTIONTYPE_NONE) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue