Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ 3.0r4 - <b>memcpy</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
memcpy

Usage

   #include <string.h>
   void *memcpy(void *buf1,const void *buf2, size_t count);

   ANSI

Description

   memcpy copies the number of characters specified in count from buf2 to
   buf1. buf1 is returned. memcpy is faster than memmove,  but cannot handle
   overlapping moves.

Example 

   See The Memory package

Return Value

   memcpy returns buf1.

See Also

   memchr, memcmp, memmove, memset, strcmp, strcat, strset, strchr



See Also: memchr memcmp memmove memset strcmp strcat strset strchr

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson