movmem()                 Move a Block of Bytes
 
 #include   <mem.h>
 
 void       movmem(source,destin,len);
 void       *source;                     Source
 void       *destin;                     Destination
 unsigned   len;                         Number of bytes
 
    movmem() copies a block of le'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:    There is no return value.

Seealso:



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