<< Previous | Next >> | |
|
NEAR SYNTAX: void *_n_memmove( void *dst, void *src, unsigned int n );
FAR SYNTAX: _f_memmove( void far * dst, void far * src, size_t n);
NOTE By default memmove()
is defined to_n_memmove()
.Description
- Copies a block of bytes from one destination to another. Overlap is handled correctly.
- For Rabbit 4000+ users, this function supports FAR pointers. By default the near version of the function is called. The macro
USE_FAR_STRING
will change all calls to functions in this library to their far versions. The user may also explicitly call the far version with_f_strfunc
wherestrfunc
is the name of the string function.
- Because FAR addresses are larger, the far versions of this function will run slightly slower than the near version. To explicitly call the near version when the
USE_FAR_STRING
macro is defined and all pointers are near pointers, append_n_
to the function name, e.g.,_n_strfunc
. For more information about FAR pointers, see the Dynamic C User's Manual or the samples inSamples/Rabbit4000/FAR/
.Parameters
- dst
- Pointer to memory destination
- src
- Pointer to memory source
- n
- Number of characters to copy
Return value
- Pointer to destination.
Library
- STRING.LIB
See also
- memcpy, memset
Dynamic C Functions | << Previous | Next >> | rabbit.com |