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>memmove</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
memmove

Usage

   #include <string.h>

   void *memmove(void *buf1,const void *buf2, size_t count);

   ANSI

Description

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

Example 

   See The Memory package

Return Value

   memmove returns buf1.

See Also

   memcpy, strcmp, strcat, strset, strchr




See Also: memcpy strcmp strcat strset strchr

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