remove spurious spaces & tabs at end of lines

This commit is contained in:
Philippe Teuwen 2019-03-09 08:59:13 +01:00
commit 60f292b18e
249 changed files with 8481 additions and 8481 deletions

View file

@ -114,7 +114,7 @@ enum
#define ARG_LOG(x) \
do { if (ARG_ENABLE_LOG) dbg_printf x; } while (0)
#endif
#endif
extern void dbg_printf(const char *fmt, ...);
@ -1465,7 +1465,7 @@ static int arg_dbl_scanfn(struct arg_dbl *parent, const char *argval)
static int arg_dbl_checkfn(struct arg_dbl *parent)
{
int errorcode = (parent->count < parent->hdr.mincount) ? EMINCOUNT : 0;
ARG_TRACE(("%s:checkfn(%p) returns %d\n", __FILE__, parent, errorcode));
return errorcode;
}
@ -1575,7 +1575,7 @@ struct arg_dbl * arg_dbln(
result->count = 0;
}
ARG_TRACE(("arg_dbln() returns %p\n", result));
return result;
}
@ -1655,7 +1655,7 @@ static void arg_end_errorfn(
fprintf(fp, "invalid option \"-%c\"", error);
break;
}
fputc('\n', fp);
}
@ -1851,7 +1851,7 @@ static int arg_file_scanfn(struct arg_file *parent, const char *argval)
static int arg_file_checkfn(struct arg_file *parent)
{
int errorcode = (parent->count < parent->hdr.mincount) ? EMINCOUNT : 0;
ARG_TRACE(("%s:checkfn(%p) returns %d\n", __FILE__, parent, errorcode));
return errorcode;
}
@ -1962,7 +1962,7 @@ struct arg_file * arg_filen(
result->extension[i] = "";
}
}
ARG_TRACE(("arg_filen() returns %p\n", result));
return result;
}
@ -2325,7 +2325,7 @@ struct arg_int * arg_intn(
result->ival = (int *)(result + 1);
result->count = 0;
}
ARG_TRACE(("arg_intn() returns %p\n", result));
return result;
}
@ -2473,7 +2473,7 @@ struct arg_lit * arg_litn(
/* init local variables */
result->count = 0;
}
ARG_TRACE(("arg_litn() returns %p\n", result));
return result;
}
@ -3609,7 +3609,7 @@ static int arg_str_scanfn(struct arg_str *parent, const char *argval)
static int arg_str_checkfn(struct arg_str *parent)
{
int errorcode = (parent->count < parent->hdr.mincount) ? EMINCOUNT : 0;
ARG_TRACE(("%s:checkfn(%p) returns %d\n", __FILE__, parent, errorcode));
return errorcode;
}
@ -3711,7 +3711,7 @@ struct arg_str * arg_strn(
for (i = 0; i < maxcount; i++)
result->sval[i] = "";
}
ARG_TRACE(("arg_strn() returns %p\n", result));
return result;
}
@ -4252,7 +4252,7 @@ int arg_parse(int argc, char * *argv, void * *argtable)
argvcopy[i] = argv[i];
argvcopy[argc] = NULL;
/* parse the command line (local copy) for tagged options */
arg_parse_tagged(argc, argvcopy, table, endtable);