diff options
author | Mike Pavone <pavone@retrodev.com> | 2013-07-10 09:38:05 -0700 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2013-07-10 09:38:05 -0700 |
commit | 28b8256fddf53446898120f9b51a43f132d946bb (patch) | |
tree | 1b87d811230919a9e7593ee2623940518f6a5376 /config.h | |
parent | 5d758f6938dc3c73e2c858255748f781aac17010 (diff) |
Add config file parser and default config file
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config.h b/config.h new file mode 100644 index 0000000..3850c53 --- /dev/null +++ b/config.h @@ -0,0 +1,8 @@ +#ifndef CONFIG_H_ +#define CONFIG_H_ +#include "tern.h" + +tern_node * load_config(char * expath); + +#endif //CONFIG_H_ + |