#include <string.h>
char *strrchr(const char *s, int c);
strpbrk() searches for the last occurrence of character ch in s.
NULL, if there is no such character in p; a pointer to the character otherwise.
strchr()
strcspn()
strpbrk()
strspn()