Skip to content

Instantly share code, notes, and snippets.

@v0idpwn
Last active October 9, 2015 23:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save v0idpwn/6f4f9dcd217fc79fdb7a to your computer and use it in GitHub Desktop.
Save v0idpwn/6f4f9dcd217fc79fdb7a to your computer and use it in GitHub Desktop.
Get system language
#include <stdio.h>
#include <locale.h>
int main (){
int repeat=0;
do {
printf ("Locale is: %s\n", setlocale(LC_CTYPE,NULL) );
setlocale (LC_CTYPE,"");
} while (!repeat++);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment