Edit

thodg/libiconv/libcharset/tools/locale_charset.c

Branch :

  • Show log

    Commit

  • Author : Bruno Haible
    Date : 2003-03-29 16:35:11
    Hash : 64d5a8b9
    Message : Improved MSVC support.

  • libcharset/tools/locale_charset.c
  • /* Prints the portable name for the current locale's charset. */
    
    #include <stdio.h>
    #include <stdlib.h>
    #include <locale.h>
    #include "localcharset.h"
    
    int main ()
    {
      setlocale(LC_ALL, "");
      printf("%s\n", locale_charset());
      exit(0);
    }