minimal argument parsing shouldn't require a hundred lines of code.
header only argument parsing for c inspired by the simplicity of argh.
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "argh.h"
#define USAGE "example [-l|--lz4] [-h N|--head N] [-p|--prefix] POS1 ... POSN"
int main(int argc, char **argv) {
bool prefix = false;
bool lz4 = false;
int head = 0;
ARGH_PARSE {
ARGH_NEXT();
if ARGH_BOOL("-p", "--prefix") { prefix = true;}
else if ARGH_BOOL("-l", "--lz4") { lz4 = true; }
else if ARGH_FLAG("-h", "--head") { head = atol(ARGH_VAL()); }
}
printf("head: %d, prefix: %d, lz4: %d\n", head, prefix, lz4);
for (int i = 0; i < ARGH_ARGC; i++)
printf("positional arg %d: %s\n", i, ARGH_ARGV[i]);
}
>> make
>> ./example -lph5 asdf 123
head: 5, prefix: 1, lz4: 1
pos arg 0: asdf
pos arg 1: 123
>> ./example --lz4 asdf -p 123 --head 5
head: 5, prefix: 1, lz4: 1
pos arg 0: asdf
pos arg 1: 123
>> ./example asdf 123 --head 5 --lz4
head: 5, prefix: 0, lz4: 1
pos arg 0: asdf
pos arg 1: 123