File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 9595
9696| 名前 | 説明 | 対応バージョン |
9797| ------| ------| ----------------|
98- | [ ` MB_CUR_MAX ` ] ( cstdlib/mb_cur_max.md ) | マルチバイト文字列の最大サイズを表す整数値マクロ (macro)
98+ | [ ` MB_CUR_MAX ` ] ( cstdlib/mb_cur_max.md ) | マルチバイト文字列の最大サイズを表す整数値マクロ (macro)|
9999| ` mblen ` | マルチバイト文字の長さを取得する (function) | |
100100| ` mbtowc ` | マルチバイト文字を、ワイド文字に変換する (function) | |
101101| ` wctomb ` | ワイド文字を、マルチバイト文字に変換する (function) | |
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ int main() {
3131 if (std::setlocale(LC_CTYPE, "ja_JP.UTF-8") == nullptr) {
3232 std::cout << "Failed to set locale to: ja_JP.UTF-8" << std::endl;
3333 }
34- std::setlocale(LC_CTYPE, "ja_JP.UTF-8");//
34+ std::setlocale(LC_CTYPE, "ja_JP.UTF-8");//ロケールを日本語UTF-8に変更
3535 std::cout << "Locale: ja_JP.UTF-8, MB_CUR_MAX: " << MB_CUR_MAX << std::endl;
3636 return 0;
3737}
You can’t perform that action at this time.
0 commit comments