debuggers.hg
view tools/libxl/libxlu_cfg_i.h @ 21067:b4a1832a916f
Update Xen version to 4.0.0-rc6
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Tue Mar 09 18:18:05 2010 +0000 (2010-03-09) |
parents | 71af69a9d393 |
children | cb94dbe20f97 |
line source
1 #ifndef LIBXLU_CFG_I_H
2 #define LIBXLU_CFG_I_H
4 #include "libxlu_internal.h"
5 #include "libxlu_cfg_y.h"
7 void xlu__cfg_set_free(XLU_ConfigSetting *set);
8 XLU_ConfigSetting *xlu__cfg_set_mk(CfgParseContext*, int alloc, char *atom);
9 void xlu__cfg_set_add(CfgParseContext*, XLU_ConfigSetting *set, char *atom);
10 void xlu__cfg_set_store(CfgParseContext*, char *name,
11 XLU_ConfigSetting *set, int lineno);
13 char *xlu__cfgl_strdup(CfgParseContext*, const char *src);
14 char *xlu__cfgl_dequote(CfgParseContext*, const char *src);
16 void xlu__cfg_yyerror(YYLTYPE *locp, CfgParseContext*, char const *msg);
17 void xlu__cfgl_lexicalerror(CfgParseContext*, char const *msg);
21 /* Why oh why does bison not declare this in its autogenerated .h ? */
22 int xlu__cfg_yyparse(CfgParseContext *ctx);
25 #endif /*LIBXLU_CFG_I_H*/