Ticket #41576: testlocale.c

File testlocale.c, 362 bytes (added by ryandesign (Ryan Carsten Schmidt), 10 years ago)

source for a small C program to print the current locale and country

Line 
1/*
2testlocale.c
3by Ryan Schmidt
4BSD license
5
6Compile this with:
7cc testlocale.c -framework CoreFoundation -o testlocale
8Run it with:
9./testlocale
10*/
11
12#include <CoreFoundation/CoreFoundation.h>
13
14int main() {
15  CFLocaleRef locale = CFLocaleCopyCurrent();
16  CFShow(locale);
17  CFTypeRef country = CFLocaleGetValue(locale, kCFLocaleCountryCode);
18  CFShow(country);
19}