|
2 | 2 | <feed xmlns="http://www.w3.org/2005/Atom">
|
3 | 3 | <title>cpprefjp - C++日本語リファレンス</title>
|
4 | 4 | <link href="https://cpprefjp.github.io" />
|
5 |
| - <updated>2025-07-09T13:34:21.842222</updated> |
6 |
| - <id>f2dfecd7-8e57-4ca9-a1f6-fc00f812604f</id> |
| 5 | + <updated>2025-07-09T13:47:52.843987</updated> |
| 6 | + <id>b122909e-17e7-46d9-a48b-44447027a52f</id> |
7 | 7 |
|
8 | 8 |
|
9 | 9 | <entry>
|
@@ -153,86 +153,6 @@ index 215d34994..eb60a7016 100644
|
153 | 153 |
|
154 | 154 | -- [C99: 7.20.3 Memory management functions](https://www.dii.uchile.cl/~daespino/files/Iso_C_1999_definition.pdf) [PDF]
|
155 | 155 | +- C99: 7.20.3 Memory management functions
|
156 |
| -</code></pre></summary> |
157 |
| - |
158 |
| - <author> |
159 |
| - <name>Koichi Murase</name> |
160 |
| - |
161 |
| - </author> |
162 |
| - </entry> |
163 |
| - |
164 |
| - <entry> |
165 |
| - <title>atoi,atol,atoll -- fix(reference/cstdlib/{calloc,atoi,malloc}): 参照文献名の明示</title> |
166 |
| - <link href="https://cpprefjp.github.io/reference/cstdlib/atoi_atol_atoll.html"/> |
167 |
| - <id>403a76f3a5f42fbc761befd081b5d57d9277f837:reference/cstdlib/atoi_atol_atoll.md</id> |
168 |
| - <updated>2025-07-09T20:16:19+09:00</updated> |
169 |
| - |
170 |
| - <summary type="html"><pre><code>diff --git a/reference/cstdlib/atoi_atol_atoll.md b/reference/cstdlib/atoi_atol_atoll.md |
171 |
| -index 114b1c79f..9161aaaf4 100644 |
172 |
| ---- a/reference/cstdlib/atoi_atol_atoll.md |
173 |
| -+++ b/reference/cstdlib/atoi_atol_atoll.md |
174 |
| -@@ -70,8 +70,8 @@ int main(void) |
175 |
| - それぞれ`std::string` および `std::wstring` に対応させたものと見なせる。 |
176 |
| - |
177 |
| - ## 参照 |
178 |
| --- [7.22.1.2 The atoi, atol, and atoll functions](https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3220.pdf) |
179 |
| --- [7.22.1.2 The atoi, atol, and atoll functions (p: 249)](https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2310.pdf) |
180 |
| --- [7.22.1.2 The atoi, atol, and atoll functions (p: 341)](https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1548.pdf) |
181 |
| --- [7.20.1.2 The atoi, atol, and atoll functions (p: 307)](https://www.dii.uchile.cl/~daespino/files/Iso_C_1999_definition.pdf) |
182 |
| --- [4.10.1.2 The atoi function](https://www.dii.uchile.cl/~daespino/files/Iso_C_1999_definition.pdf) |
183 |
| -+- [C N3220: 7.22.1.2 The atoi, atol, and atoll functions](https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3220.pdf) |
184 |
| -+- [C N2310: 7.22.1.2 The atoi, atol, and atoll functions (p: 249)](https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2310.pdf) |
185 |
| -+- [C N1548: 7.22.1.2 The atoi, atol, and atoll functions (p: 341)](https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1548.pdf) |
186 |
| -+- [C99: 7.20.1.2 The atoi, atol, and atoll functions (p: 307)](https://www.dii.uchile.cl/~daespino/files/Iso_C_1999_definition.pdf) |
187 |
| -+- [C99: 4.10.1.2 The atoi function](https://www.dii.uchile.cl/~daespino/files/Iso_C_1999_definition.pdf) |
188 |
| -</code></pre></summary> |
189 |
| - |
190 |
| - <author> |
191 |
| - <name>Koichi Murase</name> |
192 |
| - |
193 |
| - </author> |
194 |
| - </entry> |
195 |
| - |
196 |
| - <entry> |
197 |
| - <title>calloc -- fix(reference/cstdlib/{calloc,atoi,malloc}): 参照文献名の明示</title> |
198 |
| - <link href="https://cpprefjp.github.io/reference/cstdlib/calloc.html"/> |
199 |
| - <id>403a76f3a5f42fbc761befd081b5d57d9277f837:reference/cstdlib/calloc.md</id> |
200 |
| - <updated>2025-07-09T20:16:19+09:00</updated> |
201 |
| - |
202 |
| - <summary type="html"><pre><code>diff --git a/reference/cstdlib/calloc.md b/reference/cstdlib/calloc.md |
203 |
| -index b87ab7a67..215d34994 100644 |
204 |
| ---- a/reference/cstdlib/calloc.md |
205 |
| -+++ b/reference/cstdlib/calloc.md |
206 |
| -@@ -66,4 +66,4 @@ p2[3] == 0 |
207 |
| - |
208 |
| - ## 参照 |
209 |
| - |
210 |
| --- [7.20.3 Memory management functions](https://www.dii.uchile.cl/~daespino/files/Iso_C_1999_definition.pdf) [PDF] |
211 |
| -+- [C99: 7.20.3 Memory management functions](https://www.dii.uchile.cl/~daespino/files/Iso_C_1999_definition.pdf) [PDF] |
212 |
| -</code></pre></summary> |
213 |
| - |
214 |
| - <author> |
215 |
| - <name>Koichi Murase</name> |
216 |
| - |
217 |
| - </author> |
218 |
| - </entry> |
219 |
| - |
220 |
| - <entry> |
221 |
| - <title>malloc -- fix(reference/cstdlib/{calloc,atoi,malloc}): 参照文献名の明示</title> |
222 |
| - <link href="https://cpprefjp.github.io/reference/cstdlib/malloc.html"/> |
223 |
| - <id>403a76f3a5f42fbc761befd081b5d57d9277f837:reference/cstdlib/malloc.md</id> |
224 |
| - <updated>2025-07-09T20:16:19+09:00</updated> |
225 |
| - |
226 |
| - <summary type="html"><pre><code>diff --git a/reference/cstdlib/malloc.md b/reference/cstdlib/malloc.md |
227 |
| -index 6820bc78f..21a7221db 100644 |
228 |
| ---- a/reference/cstdlib/malloc.md |
229 |
| -+++ b/reference/cstdlib/malloc.md |
230 |
| -@@ -74,4 +74,4 @@ p1[3] == 9 |
231 |
| - |
232 |
| - ## 参照 |
233 |
| - |
234 |
| --- [7.22.3 Memory management functions](https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2310.pdf) |
235 |
| -+- [C N2310: 7.22.3 Memory management functions](https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2310.pdf) |
236 | 156 | </code></pre></summary>
|
237 | 157 |
|
238 | 158 | <author>
|
|
0 commit comments