File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -285,6 +285,10 @@ extension CVaListPointer: CustomDebugStringConvertible {
285
285
286
286
#endif
287
287
288
+ /// Copy `size` bytes of memory from `src` into `dest`.
289
+ ///
290
+ /// The memory regions `src..<src + size` and
291
+ /// `dest..<dest + size` should not overlap.
288
292
@inlinable
289
293
internal func _memcpy(
290
294
dest destination: UnsafeMutableRawPointer ,
@@ -299,10 +303,10 @@ internal func _memcpy(
299
303
/*volatile:*/ false . _value)
300
304
}
301
305
302
- /// Copy `count ` bytes of memory from `src` into `dest`.
306
+ /// Copy `size ` bytes of memory from `src` into `dest`.
303
307
///
304
- /// The memory regions `source ..<source + count ` and
305
- /// `dest..<dest + count ` may overlap.
308
+ /// The memory regions `src ..<src + size ` and
309
+ /// `dest..<dest + size ` may overlap.
306
310
@inlinable
307
311
internal func _memmove(
308
312
dest destination: UnsafeMutableRawPointer ,
You can’t perform that action at this time.
0 commit comments