summaryrefslogtreecommitdiff
path: root/accel-dpdk/conf_file.h
diff options
context:
space:
mode:
Diffstat (limited to 'accel-dpdk/conf_file.h')
-rw-r--r--accel-dpdk/conf_file.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/accel-dpdk/conf_file.h b/accel-dpdk/conf_file.h
deleted file mode 100644
index 02214665..00000000
--- a/accel-dpdk/conf_file.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef __CONF_FILE_H
-#define __CONF_FILE_H
-
-struct conf_opt {
- struct conf_opt *next;
- char *name;
- char *val;
- char *raw;
- struct conf_opt *child;
-};
-
-struct conf_sect {
- struct conf_sect *next;
- char *name;
- struct conf_opt *opt;
-};
-
-struct conf_sect *conf_get_sect(const char *name);
-const char *conf_get_opt(const char *sect, const char *name);
-
-int conf_load(const char *fname);
-
-#endif