5#ifndef __INCLUDE_RTE_CFGFILE_H__
6#define __INCLUDE_RTE_CFGFILE_H__
24#define CFG_NAME_LEN 64
28#define CFG_VALUE_LEN 256
64#define CFG_DEFAULT_COMMENT_CHARACTER ';'
138 const char *sectionname,
const char *entryname,
139 const char *entryvalue);
156 const char *entryname,
const char *entryvalue);
231 const char *sectionname);
272 const char *sectionname,
320 const char *sectionname,
321 const char *entryname);
339 const char *entryname);
int rte_cfgfile_close(struct rte_cfgfile *cfg)
int rte_cfgfile_section_entries_by_index(struct rte_cfgfile *cfg, int index, char *sectionname, struct rte_cfgfile_entry *entries, int max_entries)
struct rte_cfgfile * rte_cfgfile_load_with_params(const char *filename, int flags, const struct rte_cfgfile_parameters *params)
int rte_cfgfile_add_section(struct rte_cfgfile *cfg, const char *sectionname)
int rte_cfgfile_section_num_entries(struct rte_cfgfile *cfg, const char *sectionname)
int rte_cfgfile_add_entry(struct rte_cfgfile *cfg, const char *sectionname, const char *entryname, const char *entryvalue)
const char * rte_cfgfile_get_entry(struct rte_cfgfile *cfg, const char *sectionname, const char *entryname)
int rte_cfgfile_sections(struct rte_cfgfile *cfg, char *sections[], int max_sections)
int rte_cfgfile_save(struct rte_cfgfile *cfg, const char *filename)
int rte_cfgfile_section_entries(struct rte_cfgfile *cfg, const char *sectionname, struct rte_cfgfile_entry *entries, int max_entries)
@ CFG_FLAG_GLOBAL_SECTION
struct rte_cfgfile * rte_cfgfile_load(const char *filename, int flags)
int rte_cfgfile_section_num_entries_by_index(struct rte_cfgfile *cfg, char *sectionname, int index)
int rte_cfgfile_has_entry(struct rte_cfgfile *cfg, const char *sectionname, const char *entryname)
int rte_cfgfile_has_section(struct rte_cfgfile *cfg, const char *sectionname)
struct rte_cfgfile * rte_cfgfile_create(int flags)
int rte_cfgfile_num_sections(struct rte_cfgfile *cfg, const char *sec_name, size_t length)
int rte_cfgfile_set_entry(struct rte_cfgfile *cfg, const char *sectionname, const char *entryname, const char *entryvalue)
char value[CFG_VALUE_LEN]