Allow specifying * instead of any of the MENU COLOR fields.
[syslinux.git] / com32 / lib / strrchr.c
blobb9f20041f158bf3e30eb55a037aaa5d377bbb06c
1 /*
2 * strrchr.c
3 */
5 #include <string.h>
7 char *strrchr(const char *s, int c)
9 const char *found = NULL;
11 while ( *s ) {
12 if ( *s == (char) c )
13 found = s;
14 s++;
17 return (char *)found;