MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1#ifndef MISC_H
2#define MISC_H
3
4#include <stdio.h>
5struct arg_end;
6
7typedef struct {
8 const char *s;
9 const char *l;
10 const char *d;
11 const char *g;
12 int opt;
13} flag_help_t;
14
15void print_flags_help(FILE *fp, void **argtable);
16void print_flag(FILE *fp, flag_help_t f);
17void print_errors(FILE *fp, struct arg_end *end);
18
19#endif