X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fopt%2Fprivate.h;h=048951e90c55f47285ccf1463567cf8241c1a5f1;hp=b1a189234974bb8250102cd3a073f00b6bb503e2;hb=6a6f64f541e5d09162e0ba8814e04feb13ff5e8f;hpb=d7d5abe98caeec82d784ce525e0444ff438acd46 diff --git a/ccan/opt/private.h b/ccan/opt/private.h index b1a18923..048951e9 100644 --- a/ccan/opt/private.h +++ b/ccan/opt/private.h @@ -2,10 +2,18 @@ #define CCAN_OPT_PRIVATE_H extern struct opt_table *opt_table; -extern unsigned int opt_count; +extern unsigned int opt_count, opt_num_short, opt_num_short_arg, opt_num_long; extern const char *opt_argv0; -#define subtable_of(entry) ((struct opt_table *)((entry)->longopt)) +#define subtable_of(entry) ((struct opt_table *)((entry)->names)) + +const char *first_sopt(unsigned *i); +const char *next_sopt(const char *names, unsigned *i); +const char *first_lopt(unsigned *i, unsigned *len); +const char *next_lopt(const char *p, unsigned *i, unsigned *len); + +int parse_one(int *argc, char *argv[], unsigned *offset, + void (*errlog)(const char *fmt, ...)); #endif /* CCAN_OPT_PRIVATE_H */