aboutsummaryrefslogtreecommitdiffstats
path: root/table_templates/pseudo_tables.h
blob: 6d0e355b7678462e1878cd4f06b33a4afc41b2ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@name pseudo_tables.h
@header
/* standard ranges/values/keys */

/* This file is generated and should not be modified.  See the maketables
 * script if you want to modify this. */

/* NULL, strcmp */
#include <string.h>
@body
/* tables for ${name} */
${comment}
typedef enum {
	${prefix}_UNKNOWN = -1,
	${prefix}_NONE = 0,
	${enums},
	${prefix}_MAX
} pseudo_${name}_t;
${flag_enums}
extern const char *pseudo_${name}_name(pseudo_${name}_t);
extern pseudo_${name}_t pseudo_${name}_id(const char *);
${column_protos}

@footer