|
NAMEstrnchr - locate character in stringSYNOPSIS# include <string.h> # include <begemot.h> char * strnchr(const char *s, int c, size_t n); DESCRIPTIONThis function returns a pointer to the first occurence of character c in string s. The search stops after n characters or at the end of the string.RETURN VALUEThe function returns a pointer to the matching character or NULL if no match is found within the first n characters.SEE ALSOstrchr(3C)
Visit the GSP FreeBSD Man Page Interface. |