Skip to content
Snippets Groups Projects
Commit 2af75352 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

This is used on linux

parent 4be61bd7
No related branches found
No related tags found
No related merge requests found
......@@ -139,6 +139,16 @@ accumulate_locstring(const char *str, FL_Locale *l) {
return 0;
}
#ifndef WIN32
static int
accumulate_env(const char* name, FL_Locale* l) {
char* env = getenv(name);
if (env) {
return accumulate_locstring(env, l);
}
return 0;
}
#endif
static void
canonise_fl(FL_Locale *l) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment