1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 #ifndef PMIX_SHOW_HELP_LEX_H
22 #define PMIX_SHOW_HELP_LEX_H
23
24 #include <src/include/pmix_config.h>
25
26 #ifdef malloc
27 #undef malloc
28 #endif
29 #ifdef realloc
30 #undef realloc
31 #endif
32 #ifdef free
33 #undef free
34 #endif
35
36 #include <stdio.h>
37 BEGIN_C_DECLS
38 int pmix_show_help_yylex(void);
39 int pmix_show_help_init_buffer(FILE *file);
40 int pmix_show_help_yylex_destroy(void);
41
42 extern FILE *pmix_show_help_yyin;
43 extern bool pmix_show_help_parse_done;
44 extern char *pmix_show_help_yytext;
45 extern int pmix_show_help_yynewlines;
46
47
48
49
50 #define YY_STACK_USED 0
51 #define YY_ALWAYS_INTERACTIVE 0
52 #define YY_NEVER_INTERACTIVE 0
53 #define YY_MAIN 0
54 #define YY_NO_UNPUT 1
55 #define YY_SKIP_YYWRAP 1
56
57 enum {
58 PMIX_SHOW_HELP_PARSE_DONE,
59 PMIX_SHOW_HELP_PARSE_ERROR,
60
61 PMIX_SHOW_HELP_PARSE_TOPIC,
62 PMIX_SHOW_HELP_PARSE_MESSAGE,
63
64 PMIX_SHOW_HELP_PARSE_MAX
65 };
66 END_C_DECLS
67 #endif