C Language and Libraries Help (clang.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
memmove, _fmemmove
 Summary Example                         Up Contents Index Back
─────Run-Time Library───────────────────────────────────────────────────────
 
     The memmove and _fmemmove functions copy <count> characters from
     <src> to <dest>. If some regions of <src> and <dest> overlap, the
     memmove and _fmemmove functions ensure that the original <src>
     bytes in the overlapping region are copied before being
     overwritten.
 
     The _fmemmove function is a model-independent (large model) form
     of the memmove function and can be called from any point in any
     program.
 
     Return Value
 
     The memmove and _fmemmove functions return the value of <dest>.
                                    -♦-