comparison config.h @ 496:6fc71114d145

Extract function to determine executable directory from load_config so it can be used elsewhere
author Mike Pavone <pavone@retrodev.com>
date Mon, 28 Oct 2013 21:48:46 -0700
parents 140af5509ce7
children bb60259e8edf
comparison
equal deleted inserted replaced
495:39cad98d2789 496:6fc71114d145
1 /* 1 /*
2 Copyright 2013 Michael Pavone 2 Copyright 2013 Michael Pavone
3 This file is part of BlastEm. 3 This file is part of BlastEm.
4 BlastEm is free software distributed under the terms of the GNU General Public License version 3 or greater. See COPYING for full license text. 4 BlastEm is free software distributed under the terms of the GNU General Public License version 3 or greater. See COPYING for full license text.
5 */ 5 */
6 #ifndef CONFIG_H_ 6 #ifndef CONFIG_H_
7 #define CONFIG_H_ 7 #define CONFIG_H_
8 #include "tern.h" 8 #include "tern.h"
9 9
10 tern_node * load_config(char * expath); 10 tern_node * load_config();
11 11
12 #endif //CONFIG_H_ 12 #endif //CONFIG_H_
13 13