C++ Programming/Code/Standard C Library/Functions/memchr
< C++ Programming < Code < Standard C Library < Functionsmemchr
Syntax |
#include <cstring>
void *memchr( const void *buffer, int ch, size_t count );
|
The memchr() function looks for the first occurrence of ch within count characters in the array pointed to by buffer. The return value points to the location of the first occurrence of ch, or NULL if ch isn't found. For example:
char names[] = "Alan Bob Chris X Dave";
if( memchr(names,'X',strlen(names)) == NULL )
printf( "Didn't find an X\n" );
else
printf( "Found an X\n" );
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.