#include <stdio.h>
#include <locale.h>
int main (int argc, char *argv[])
{
  setlocale (LC_ALL, "");
  char *loc;
  loc = setlocale (LC_ALL, NULL);
  printf ("LC_ALL: \"%s\"\n", loc);
  return 0;
}
