Skip to content

Commit de7bef8

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent b6c3ba4 commit de7bef8

File tree

4 files changed

+433
-165
lines changed

4 files changed

+433
-165
lines changed

reference/cstdlib.html

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

177177
<p class="text-right"><small>
178178
最終更新日時(UTC):
179-
<span itemprop="datePublished" content="2025-07-06T09:35:32">
180-
2025年07月06日 09時35分32秒
179+
<span itemprop="datePublished" content="2025-07-06T09:53:39">
180+
2025年07月06日 09時53分39秒
181181
</span>
182182
<br/>
183183
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -310,12 +310,12 @@ <h2>メモリ管理</h2>
310310
</thead>
311311
<tbody>
312312
<tr>
313-
<td><code>aligned_alloc</code></td>
313+
<td><code><a href="cstdlib/aligned_alloc.html">aligned_alloc</a></code></td>
314314
<td>指定したアライメントでメモリを確保する (function)</td>
315315
<td>C++17</td>
316316
</tr>
317317
<tr>
318-
<td><code>malloc</code></td>
318+
<td><code><span href="https://cpprefjp.github.io/reference/cstdlib/malloc.md.nolink">malloc</span></code></td>
319319
<td>メモリを確保する (function)</td>
320320
<td></td>
321321
</tr>
@@ -325,12 +325,12 @@ <h2>メモリ管理</h2>
325325
<td></td>
326326
</tr>
327327
<tr>
328-
<td><code>realloc</code></td>
328+
<td><code><span href="https://cpprefjp.github.io/reference/cstdlib/realloc.md.nolink">realloc</span></code></td>
329329
<td>メモリを再確保する (function)</td>
330330
<td></td>
331331
</tr>
332332
<tr>
333-
<td><code>free</code></td>
333+
<td><code><span href="https://cpprefjp.github.io/reference/cstdlib/free.md.nolink">free</span></code></td>
334334
<td>確保したメモリを解放する (function)</td>
335335
<td></td>
336336
</tr>

reference/cstdlib/calloc.html

Lines changed: 4 additions & 4 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-06T09:42:48">
192-
2025年07月06日 09時42分48秒
191+
<span itemprop="datePublished" content="2025-07-06T09:49:48">
192+
2025年07月06日 09時49分48秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -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>関数による連続的なメモリ確保によるメモリの割当の順序、連続性は<a class="cpprefjp-defined-word" data-desc="未定義の動作。処理系は予期せぬ動作をする可能性がある。要するに動作保証対象外。undefined behavior (UB)。" href="../../implementation-compliance.html#dfn-undefined-behavior">未定義</a>である</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>
@@ -255,7 +255,7 @@ <h2>出力例</h2>
255255
</code></pre></p>
256256
<h2>関連項目</h2>
257257
<ul>
258-
<li><span href="https://cpprefjp.github.io/reference/cstdlib" title="free.md.nolink">"free"</span>:確保されたメモリを解放する。</li>
258+
<li><code>free</code>:確保されたメモリを解放する。</li>
259259
</ul>
260260
<h2>参照</h2>
261261
<p>-<span href="https://cpprefjp.github.io/reference/cstdlib" title="https://www.dii.uchile.cl/~daespino/files/Iso_C_1999_definition.pdf">7.20.3 Memory management functions</span></p></div>

0 commit comments

Comments
 (0)