private.h 255 B

1234567891011
  1. #ifndef CCAN_OPT_PRIVATE_H
  2. #define CCAN_OPT_PRIVATE_H
  3. extern struct opt_table *opt_table;
  4. extern unsigned int opt_count;
  5. extern const char *opt_argv0;
  6. #define subtable_of(entry) ((struct opt_table *)((entry)->longopt))
  7. #endif /* CCAN_OPT_PRIVATE_H */