indentation

This commit is contained in:
nathants 2020-07-15 17:04:33 -07:00
parent d32113e538
commit 9308d0e11e
1 changed files with 1 additions and 1 deletions

2
argh.h
View File

@ -25,7 +25,7 @@
/* ARGH_VAL cannot be used with ARGH_BOOL */ \
(argh_name = NULL, \
/* short name exact match */ \
(( 0 == strcmp(argv[argh_offset], short_name) \
(( 0 == strcmp(argv[argh_offset], short_name) \
/* short name prefix match, for specify multiple short names with a single param, -xyz instead -x -y -z. this mutates argv for the next pass, -xyz to -yz */ \
|| ((0 == strncmp(argv[argh_offset], short_name, 2) && strlen(argv[argh_offset]) > 2 && (argv[argh_offset]++, argv[argh_offset][0] = '-', argh_repeat = true))) \
/* long name exact match */ \