/* * 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