blob: 90a8c010887f0386c99602f618bec89dd1870927 [file] [log] [blame]
#include <locale.h>
int main(int argc, char** argv) {
locale_t locale = newlocale(LC_ALL, "tr_TR", static_cast<locale_t>(0));
freelocale(locale);
return 0;
}