![]() |
![]()
| ![]() |
![]()
NAMEstrrstr - locate last occurence of substring SYNOPSIS#include <publib.h> char *strrstr(const char *str, const char *pat); DESCRIPTIONstrrstr finds the last occurence of the string pat in the string str. The terminating '\0' characters are not compared. RETURN VALUEstrrstr returns a pointer to the first character of the substring, or NULL if the substring is not found. EXAMPLETo print out everything on each line starting with the last occurence of "/* " on each line, you might use the following code:
SEE ALSOpublib(3), string(3), strstr(3) AUTHORLars Wirzenius (lars.wirzenius@helsinki.fi)
|