4ba9eaaafc
FossilOrigin-Name: f4af357f387db21585ed5e0a171060e87ab4c9c7c6d954b63294f596f91d63d2
16 lines
405 B
C
16 lines
405 B
C
/*
|
|
* This is the config file for RatFE. Any changes you make here requires
|
|
* a recompile, but RatFE shouldn't take long to compile ;)
|
|
*
|
|
* You don't need to understand C, I've created simple types to represent
|
|
* what you need to set without any C knowledge.
|
|
*/
|
|
|
|
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
#define FALSE 0
|
|
#define TRUE 1
|
|
|
|
static const char* config_canonical_name = "RatFE";
|
|
|
|
#endif // CONFIG_H
|