INDEX
[WindowsAPI]ロケール
1  NI-Lab.  2004/07/27(Tue) 22:30
[WindowsAPI]ロケール

// 現在のロケールを取得する
char* tmp = ::setlocale(LC_ALL, NULL);
char* currentLocale = ::_strdup(tmp);
printf("current locale = %s\n", currentLocale);
free(currentLocale);

strftime <= 時刻文字列を書式化する関数