Index of Section 3 Manual Pages
| Interix / SUA | strrchr.3 | Interix / SUA |
strrchr(3) strrchr(3)
strrchr()
NAME
strrchr() - locate character in string
SYNOPSIS
#include
char * strrchr (const char *s, int c)
DESCRIPTION
The strrchr(3) function locates the last occurrence of c (converted to a
char) in the string s. If c is \0, strrchr(3) locates the terminating \0.
RETURN VALUES
The strrchr(3) function returns a pointer to the character, or a null
pointer if c does not occur anywhere in s.
SEE ALSO
memchr(3)
strchr(3)
strcspn(3)
strpbrk(3)
strsep(3)
strspn(3)
strstr(3)
strtok(3)
USAGE NOTES
The strrchr function is thread safe.
The strrchr function is not async-signal safe.