#if defined linux || defined __linux__ || defined __linux // Linux
#define PLATFORM_CONFIG_PATH strcat(getenv("HOME"),"/.dict_config.txt")
#define PLATFORM_RESET_COMMAND "reset"
#elif defined __WIN32 || defined __WIN64 // Windows
#define PLATFORM_CONFIG_PATH config_path=strcatstrcat(getenv("USERPROFILE"),"\\My Documents\\dict_config.txt")
#define PLATFORM_RESET_COMMAND "cls"
#else
#error "Untested platform"
#endif
/*
* Path to store configuration File
* which will contain location of dictionary and its backup on Linux...
*/
const char* config_path = PLATFORM_CONFIG_PATH;
const char* clear_screen = PLATFORM_RESET_COMMAND;