summaryrefslogtreecommitdiffstats
path: root/config/uselocale.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-04-19 14:15:30 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-04-19 15:50:45 -0400
commit6cdb407aa23d8b129e9b9a49a4528c3e0def69e6 (patch)
treeb32a4862101e4144eaff83e3baeabbb98aedabba /config/uselocale.c
parent71f822ec2bf8c41f782f154d87b7b415a530dd03 (diff)
downloadbfs-6cdb407aa23d8b129e9b9a49a4528c3e0def69e6.tar.xz
config: Check for strerror_[lr]()
Diffstat (limited to 'config/uselocale.c')
-rw-r--r--config/uselocale.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/config/uselocale.c b/config/uselocale.c
new file mode 100644
index 0000000..a712ff8
--- /dev/null
+++ b/config/uselocale.c
@@ -0,0 +1,9 @@
+// Copyright © Tavian Barnes <tavianator@tavianator.com>
+// SPDX-License-Identifier: 0BSD
+
+#include <locale.h>
+
+int main(void) {
+ locale_t locale = uselocale((locale_t)0);
+ return locale == LC_GLOBAL_LOCALE;
+}