summaryrefslogtreecommitdiffstats
path: root/src/detection/locale/locale_linux.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/detection/locale/locale_linux.c')
-rw-r--r--src/detection/locale/locale_linux.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/detection/locale/locale_linux.c b/src/detection/locale/locale_linux.c
new file mode 100644
index 0000000..4c04f26
--- /dev/null
+++ b/src/detection/locale/locale_linux.c
@@ -0,0 +1,22 @@
+#include "detection/locale/locale.h"
+
+#include <locale.h>
+
+const char* ffDetectLocale(FFstrbuf* result) {
+ ffStrbufAppendS(result, getenv("LC_ALL"));
+ if (result->length > 0) {
+ return NULL;
+ }
+
+ ffStrbufAppendS(result, getenv("LANG"));
+ if (result->length > 0) {
+ return NULL;
+ }
+
+ ffStrbufAppendS(result, setlocale(LC_TIME, NULL));
+ if (result->length > 0) {
+ return NULL;
+ }
+
+ return "Failed to detect locale";
+}