![]() |
|
| << Previous | Next >> | |
| | |
NEAR SYNTAX: void * _n_memchr( void * src, int ch, unsigned int n );
FAR SYNTAX: void far * _f_memchr( void far * src, int ch, size_t n );
NOTE By default, memchr()is defined to_n_memchr().Description
- Searches up to
ncharacters at memory pointed to bysrcfor characterch.
- For Rabbit 4000+ users, this function supports FAR pointers. By default the near version of the function is called. The macro
USE_FAR_STRINGwill change all calls to functions in this library to their far versions. The user may also explicitly call the far version with_f_strfuncwherestrfuncis 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_STRINGmacro 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
- src
- Pointer to memory source.
- ch
- Character to search for.
- n
- Number of bytes to search.
Return value
- Pointer to first occurrence of
chif found withinncharacters. Otherwise returns null.Library
- STRING.LIB
See also
- strrchr, strstr
| Dynamic C Functions | << Previous | Next >> | rabbit.com |