From 28b8256fddf53446898120f9b51a43f132d946bb Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Wed, 10 Jul 2013 09:38:05 -0700 Subject: Add config file parser and default config file --- config.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 config.h (limited to 'config.h') 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_ + -- cgit v1.2.3 From 2c302a78d201d9b594774cec505d14c22e03662c Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Tue, 10 Sep 2013 23:31:08 -0700 Subject: Added copyright notice to source files and added GPL license text in COPYING --- config.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'config.h') diff --git a/config.h b/config.h index 3850c53..b520d19 100644 --- a/config.h +++ b/config.h @@ -1,3 +1,8 @@ +/* + Copyright 2013 Michael Pavone + This file is part of BlastEm. + BlastEm is free software distributed under the terms of the GNU General Public License version 3 or greater. See COPYING for full license text. +*/ #ifndef CONFIG_H_ #define CONFIG_H_ #include "tern.h" -- cgit v1.2.3