22<feed xmlns =" http://www.w3.org/2005/Atom" >
33 <title >cpprefjp - C++日本語リファレンス</title >
44 <link href =" https://cpprefjp.github.io" />
5- <updated >2025-12-03T15:31:46.489385 </updated >
6- <id >852af33b-46ed-4038-942b-c88e558e41e1 </id >
5+ <updated >2025-12-03T16:17:12.576811 </updated >
6+ <id >31d840d2-493b-4d0f-832b-ff556277e4cd </id >
77
88
9+ <entry >
10+ <title >setlocale -- Update setlocale.md</title >
11+ <link href =" https://cpprefjp.github.io/reference/clocale/setlocale.html" />
12+ <id >cef2a2cc234b9556b2645a3688ea1ed78812bac6:reference/clocale/setlocale.md</id >
13+ <updated >2025-12-03T16:11:56+00:00</updated >
14+
15+ <summary type =" html" >< pre>< code> diff --git a/reference/clocale/setlocale.md b/reference/clocale/setlocale.md
16+ index 2fe7636c1..724ec4420 100644
17+ --- a/reference/clocale/setlocale.md
18+ +++ b/reference/clocale/setlocale.md
19+ @@ -14,12 +14,17 @@ namespace std {
20+
21+ 指定できる処理系定義のロケール文字列は[使用できるロケール文字列](/article/platform/locales.md)を参照のこと。
22+
23+ +この関数の呼び出しは他スレッドにおける `setlocale()` または現在のロケールを使用する他の関数の呼び出しとデータ競合の可能性がある。
24+ +
25+ +プログラム開始時の現在のロケールは `std::setlocale(LC_ALL, & #34;C& #34;);` が呼び出されたのと同じ状態に初期化される。
26+ +
27+ ## 引数
28+ - `category`:設定対象のカテゴリ。`LC_ALL`,`LC_CTYPE`などのマクロを使用。
29+ - `locale`:
30+ * `& #34;C& #34;`:標準のCロケール
31+ * `& #34;& #34;`:環境依存のデフォルトロケール
32+ * `NULL`:現在のロケールを取得するだけ
33+ + * 処置系定義の文字列
34+
35+ ## 戻り値
36+ 成功時は設定されたロケール名(文字列)、失敗時は`NULL`。
37+ < /code>< /pre> </summary >
38+
39+ <author >
40+ <name >K10-K10</name >
41+ <email >keito.tottori@gmail.com</email >
42+ </author >
43+ </entry >
44+
945 <entry >
1046 <title >setlocale -- 指摘された点を変更</title >
1147 <link href =" https://cpprefjp.github.io/reference/clocale/setlocale.html" />
@@ -1375,112 +1411,4 @@ index 000000000..e2934913f
13751411 </author >
13761412 </entry >
13771413
1378- <entry >
1379- <title >clocale -- clocale ライブラリページの追加</title >
1380- <link href =" https://cpprefjp.github.io/reference/clocale.html" />
1381- <id >34aa9cdb170052977aed3c9671c4e4ea21436636:reference/clocale.md</id >
1382- <updated >2025-12-03T21:38:13+09:00</updated >
1383-
1384- <content type =" html" >< div class=" header">& lt;clocale& gt;< /div>< h1 itemprop=" name">< span class=" token"> clocale< /span>< /h1>
1385- < div itemprop=" articleBody">< p>< code>& lt;clocale& gt;< /code> ヘッダでは、ローカライゼーション(地域化)に関するクラス・関数を定義する。< /p>
1386- < p> これらの機能は基本的には、< code> std< /code> 名前空間に属することを除いてC言語の標準ライブラリ< code>& lt;locale.h& gt;< /code> ヘッダと同じである。< /p>
1387- < h2> マクロ< /h2>
1388- < table border=" 1" bordercolor=" #888" style=" border-collapse:collapse">
1389- < thead>
1390- < tr>
1391- < th> 名前< /th>
1392- < th> 説明< /th>
1393- < th> 対応バージョン< /th>
1394- < /tr>
1395- < /thead>
1396- < tbody>
1397- < tr>
1398- < td>< code>< a href=" cstddef/null.html"> NULL< /a>< /code>< /td>
1399- < td> ヌルポインタ定数に展開されるマクロ< /td>
1400- < td>< /td>
1401- < /tr>
1402- < tr>
1403- < td>< code> LC_ALL< /code>< /td>
1404- < td> すべてのロケールカテゴリを一括指定するための定数< /td>
1405- < td>< /td>
1406- < /tr>
1407- < tr>
1408- < td>< code> LC_COLLATE< /code>< /td>
1409- < td> 文字列の照合(比較)規則に関するロケールカテゴリ< /td>
1410- < td>< /td>
1411- < /tr>
1412- < tr>
1413- < td>< code> LC_CTYPE< /code>< /td>
1414- < td> 文字分類(大文字/小文字、数字、空白など)やマルチバイト文字の扱いに関するカテゴリ< /td>
1415- < td>< /td>
1416- < /tr>
1417- < tr>
1418- < td>< code> LC_MONETARY< /code>< /td>
1419- < td> 通貨表記に関するロケールカテゴリ< /td>
1420- < td>< /td>
1421- < /tr>
1422- < tr>
1423- < td>< code> LC_NUMERIC< /code>< /td>
1424- < td> 数値表記に関するロケールカテゴリ(小数点記号など)< /td>
1425- < td>< /td>
1426- < /tr>
1427- < tr>
1428- < td>< code> LC_TIME< /code>< /td>
1429- < td> 日付および時刻表記に関するロケールカテゴリ< /td>
1430- < td>< /td>
1431- < /tr>
1432- < /tbody>
1433- < /table>
1434- < h2> 構造体< /h2>
1435- < table border=" 1" bordercolor=" #888" style=" border-collapse:collapse">
1436- < thead>
1437- < tr>
1438- < th> 名前< /th>
1439- < th> 説明< /th>
1440- < th> 対応バージョン< /th>
1441- < /tr>
1442- < /thead>
1443- < tbody>
1444- < tr>
1445- < td>< code> lconv< /code>< /td>
1446- < td> 数値・通貨表示の書式設定をまとめた型< /td>
1447- < td>< /td>
1448- < /tr>
1449- < /tbody>
1450- < /table>
1451- < h2> 関数< /h2>
1452- < table border=" 1" bordercolor=" #888" style=" border-collapse:collapse">
1453- < thead>
1454- < tr>
1455- < th> 名前< /th>
1456- < th> 説明< /th>
1457- < th> 対応バージョン< /th>
1458- < /tr>
1459- < /thead>
1460- < tbody>
1461- < tr>
1462- < td>< code> setlocale< /code>< /td>
1463- < td> ロケールを変更、または現在のロケールを取得する。 < /td>
1464- < td>< /td>
1465- < /tr>
1466- < tr>
1467- < td>< code> localeconv< /code>< /td>
1468- < td> 現在のロケールに応じた数値・通貨表記情報を取得する。< /td>
1469- < td>< /td>
1470- < /tr>
1471- < /tbody>
1472- < /table>
1473- < h2> 関連項目< /h2>
1474- < ul>
1475- < li>< code>< a href=" locale.html"> locale< /a>< /code>< /li>
1476- < /ul>
1477- < h2> 参照< /h2>
1478- < p>< a href=" https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0175r1.html" target=" _blank"> Synopses for the C library< /a>< /p>< /div> </content >
1479-
1480- <author >
1481- <name >K10-K10</name >
1482- <email >keito.tottori@gmail.com</email >
1483- </author >
1484- </entry >
1485-
14861414</feed >
0 commit comments