Skip to content

Commit ff3a274

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 86ad0cc commit ff3a274

File tree

4 files changed

+70
-77
lines changed

4 files changed

+70
-77
lines changed

reference/cstdio/eof.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2025-07-05T06:40:07">
192-
2025年07月05日 06時40分07秒
191+
<span itemprop="datePublished" content="2025-07-07T01:26:33">
192+
2025年07月07日 01時26分33秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -223,11 +223,11 @@ <h2>例</h2>
223223
<p><div class="yata" id="c4bdd70d38669fac1a343b7aa7430745f7b13df2"><div class="codehilite"><pre><span></span><code><span class="cp">#include</span> <span class="cpf"><a href="../cstdio.html">&lt;cstdio&gt;</a></span><span class="cp"></span>
224224
<span class="kt">int</span> <span class="nf">main</span><span class="p">()</span> <span class="p">{</span>
225225
<span class="kt">int</span> <span class="n">c</span><span class="p">;</span>
226-
<span class="k">while</span> <span class="p">((</span><span class="n">c</span> <span class="o">=</span> <span class="n">getchar</span><span class="p">())</span> <span class="o">!=</span> <span class="n">EOF</span><span class="p">)</span> <span class="p">{</span>
227-
<span class="n">putchar</span><span class="p">(</span><span class="n">c</span><span class="p">);</span>
226+
<span class="k">while</span> <span class="p">((</span><span class="n">c</span> <span class="o">=</span> <span class="n"><span href="https://cpprefjp.github.io/reference/cstdio/getchar.md.nolink">getchar</span></span><span class="p">())</span> <span class="o">!=</span> <span class="n"><span style="color:#ff0000">EOF</span></span><span class="p">)</span> <span class="p">{</span>
227+
<span class="n"><span href="https://cpprefjp.github.io/reference/cstdio/putchar.md.nolink">putchar</span></span><span class="p">(</span><span class="n">c</span><span class="p">);</span>
228228
<span class="p">}</span>
229-
<span class="k">if</span> <span class="p">(</span><span class="n">c</span> <span class="o">==</span> <span class="n">EOF</span><span class="p">)</span>
230-
<span class="n">puts</span><span class="p">(</span><span class="s">"REACHED END"</span><span class="p">);</span>
229+
<span class="k">if</span> <span class="p">(</span><span class="n">c</span> <span class="o">==</span> <span class="n"><span style="color:#ff0000">EOF</span></span><span class="p">)</span>
230+
<span class="n"><span href="https://cpprefjp.github.io/reference/cstdio/puts.md.nolink">puts</span></span><span class="p">(</span><span class="s">"REACHED END"</span><span class="p">);</span>
231231
<span class="p">}</span>
232232
</code></pre></div>
233233
</div></p>

reference/cstdlib/calloc.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2025-07-06T09:49:48">
192-
2025年07月06日 09時49分48秒
191+
<span itemprop="datePublished" content="2025-07-07T01:29:11">
192+
2025年07月07日 01時29分11秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">K10-K10</span>
196+
<span itemprop="name">rotarymars</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -223,7 +223,7 @@
223223
<p>この関数は、静的ストレージにはアクセスしない、スレッドセーフである。</p>
224224
<h2>備考</h2>
225225
<ul>
226-
<li><code>calloc</code><code>malloc</code>および <code>realloc</code>関数による連続的なメモリ確保によるメモリの割当の順序、連続性は<a class="cpprefjp-defined-word" data-desc="未定義の動作。処理系は予期せぬ動作をする可能性がある。要するに動作保証対象外。undefined behavior (UB)。" href="../../implementation-compliance.html#dfn-undefined-behavior">未定義</a>である</li>
226+
<li><code>calloc</code><code>malloc</code>および <code>realloc</code>関数による連続的なメモリ確保によるメモリの割当の順序、連続性は不定である</li>
227227
</ul>
228228
<h2></h2>
229229
<p><div class="yata" id="e077306c620e0c310efb2f25e886ff9ab7c0b355"><div class="codehilite"><pre><span></span><code><span class="cp">#include</span> <span class="cpf">&lt;stdio.h&gt;</span><span class="cp"></span>

rss.xml

Lines changed: 58 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,66 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2025-07-06T22:24:13.569289</updated>
6-
<id>5ba9fc4c-0e0d-4aad-8fc1-201daa4da247</id>
5+
<updated>2025-07-07T01:33:34.436287</updated>
6+
<id>8c88ab54-c915-4f0d-be5b-04cef61f82fc</id>
77

88

9+
<entry>
10+
<title>calloc -- fixed failing test</title>
11+
<link href="https://cpprefjp.github.io/reference/cstdlib/calloc.html"/>
12+
<id>fb36b7c63cd9baa0125d36272d076607e4425388:reference/cstdlib/calloc.md</id>
13+
<updated>2025-07-07T10:29:11+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/cstdlib/calloc.md b/reference/cstdlib/calloc.md
16+
index caca07279..229fa532d 100644
17+
--- a/reference/cstdlib/calloc.md
18+
+++ b/reference/cstdlib/calloc.md
19+
@@ -21,7 +21,7 @@ void *calloc(size_t nmemb, size_t size);
20+
21+
## 備考
22+
23+
-- `calloc`、`malloc`および `realloc`関数による連続的なメモリ確保によるメモリの割当の順序、連続性は未定義である。
24+
+- `calloc`、`malloc`および `realloc`関数による連続的なメモリ確保によるメモリの割当の順序、連続性は不定である。
25+
26+
## 例
27+
28+
&lt;/code&gt;&lt;/pre&gt;</summary>
29+
30+
<author>
31+
<name>rotarymars</name>
32+
<email>[email protected]</email>
33+
</author>
34+
</entry>
35+
36+
<entry>
37+
<title>EOF -- added color for eof</title>
38+
<link href="https://cpprefjp.github.io/reference/cstdio/eof.html"/>
39+
<id>850a54f6cb0095a99dd38389c00b8d18fe2d8ac1:reference/cstdio/eof.md</id>
40+
<updated>2025-07-07T10:26:33+09:00</updated>
41+
42+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/cstdio/eof.md b/reference/cstdio/eof.md
43+
index b4b8db4cf..a6b3d269c 100644
44+
--- a/reference/cstdio/eof.md
45+
+++ b/reference/cstdio/eof.md
46+
@@ -25,6 +25,10 @@ int main() {
47+
}
48+
49+
```
50+
+* EOF[color ff0000]
51+
+* getchar[link /reference/cstdio/getchar.md.nolink]
52+
+* putchar[link /reference/cstdio/putchar.md.nolink]
53+
+* puts[link /reference/cstdio/puts.md.nolink]
54+
55+
### 入力
56+
```
57+
&lt;/code&gt;&lt;/pre&gt;</summary>
58+
59+
<author>
60+
<name>rotarymars</name>
61+
<email>[email protected]</email>
62+
</author>
63+
</entry>
64+
965
<entry>
1066
<title>atoi,atol,atoll -- Update atoi_atol_atoll.md</title>
1167
<link href="https://cpprefjp.github.io/reference/cstdlib/atoi_atol_atoll.html"/>
@@ -721,67 +777,4 @@ index fa38b9d6d..15a4246c0 100644
721777
</author>
722778
</entry>
723779

724-
<entry>
725-
<title>calloc -- change path</title>
726-
<link href="https://cpprefjp.github.io/reference/cstdlib/calloc.html"/>
727-
<id>5b0f8cb49991895c03b89ae0fadabc120c66f7ab:reference/cstdlib/calloc.md</id>
728-
<updated>2025-07-06T18:49:48+09:00</updated>
729-
730-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/cstdlib/calloc.md b/reference/cstdlib/calloc.md
731-
index 4311b0abb..caca07279 100644
732-
--- a/reference/cstdlib/calloc.md
733-
+++ b/reference/cstdlib/calloc.md
734-
@@ -21,7 +21,7 @@ void *calloc(size_t nmemb, size_t size);
735-
736-
## 備考
737-
738-
-- `calloc`、`malloc`および `realloc`関数による連続的なメモリ確保によるメモリの割当の順序、連続性は未定義。
739-
+- `calloc`、`malloc`および `realloc`関数による連続的なメモリ確保によるメモリの割当の順序、連続性は未定義である。
740-
741-
## 例
742-
743-
@@ -56,7 +56,7 @@ p2[3] == 0
744-
```
745-
746-
## 関連項目
747-
-- [&amp;#34;free&amp;#34;](&amp;#34;free.md.nolink&amp;#34;):確保されたメモリを解放する。
748-
+- `free`:確保されたメモリを解放する。
749-
750-
751-
752-
&lt;/code&gt;&lt;/pre&gt;</summary>
753-
754-
<author>
755-
<name>K10-K10</name>
756-
<email>[email protected]</email>
757-
</author>
758-
</entry>
759-
760-
<entry>
761-
<title>calloc -- 記述の変更</title>
762-
<link href="https://cpprefjp.github.io/reference/cstdlib/calloc.html"/>
763-
<id>1f5f23e4df6abe23f2cab4c234bd512fccca2756:reference/cstdlib/calloc.md</id>
764-
<updated>2025-07-06T18:42:48+09:00</updated>
765-
766-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/cstdlib/calloc.md b/reference/cstdlib/calloc.md
767-
index 6f7e4ebb7..4311b0abb 100644
768-
--- a/reference/cstdlib/calloc.md
769-
+++ b/reference/cstdlib/calloc.md
770-
@@ -21,7 +21,7 @@ void *calloc(size_t nmemb, size_t size);
771-
772-
## 備考
773-
774-
-- `calloc`、`malloc`および `realloc`関数による連続的なメモリ確保によるメモリの割当の順序、連続性は、未定義となる。
775-
+- `calloc`、`malloc`および `realloc`関数による連続的なメモリ確保によるメモリの割当の順序、連続性は未定義。
776-
777-
## 例
778-
779-
&lt;/code&gt;&lt;/pre&gt;</summary>
780-
781-
<author>
782-
<name>K10-K10</name>
783-
<email>[email protected]</email>
784-
</author>
785-
</entry>
786-
787780
</feed>

sitemap.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21339,7 +21339,7 @@
2133921339

2134021340
<url>
2134121341
<loc>https://cpprefjp.github.io/reference/cstdio/eof.html</loc>
21342-
<lastmod>2025-07-05T15:40:07+09:00</lastmod>
21342+
<lastmod>2025-07-07T10:26:33+09:00</lastmod>
2134321343
<changefreq>daily</changefreq>
2134421344
<priority>0.7</priority>
2134521345
</url>
@@ -31433,7 +31433,7 @@
3143331433

3143431434
<url>
3143531435
<loc>https://cpprefjp.github.io/reference/cstdlib/calloc.html</loc>
31436-
<lastmod>2025-07-06T18:49:48+09:00</lastmod>
31436+
<lastmod>2025-07-07T10:29:11+09:00</lastmod>
3143731437
<changefreq>daily</changefreq>
3143831438
<priority>0.7</priority>
3143931439
</url>

0 commit comments

Comments
 (0)