memmove()                Move a Block of Bytes
 
 #include   <string.h>
 #include   <mem.h>
 
 void       *memmove(destin,source,n);
 void       *destin;                     Destination
 void       *source;                     Source
 unsigned   n;                           Number of bytes
 
    memmove() copies a block of 'n' bytes from 'source' to 'destin'. If
    the source and destination blocks overlap, the copy direction is
    chosen so that overlapping bytes are copied correctly.
 
    Returns:    'destin' is returned.

Seealso:



This page last updated on Fri Nov 30 10:48:32 MSK 2001
Copyright © 1992-2001, Vitaly Filatov, Moscow, Russia
Webmaster