test/sdi: make use of sfdc generated stubs file.
[AROS.git] / compiler / stdc / memcpy.c
blob4969ec03efac527d10a00e7662810febbda79a46
1 /*****************************************************************************
3 NAME
4 #include <string.h>
6 void *memcpy (
8 SYNOPSIS
9 void * restrict dst0,
10 const void * restrict src0,
11 size_t length)
13 FUNCTION
14 Copy a block of memory; handling of overlapping regions is not
15 guaranteed.
17 INPUTS
18 dst0: destination for copy
19 src0: source for copy
20 length: number of bytes to copy
22 RESULT
23 dst0
25 NOTES
26 stdc.library/memcpy() is an alias to stdc.library/memmove()
27 So overlapping regions are handled OK if this function is used.
29 EXAMPLE
31 BUGS
33 SEE ALSO
35 INTERNALS
37 ******************************************************************************/