123456789101112131415161718192021222324252627282930 |
- <html>
- <head>
- <title>strrchr</title>
- <body bgcolor=#ffffff>
- <h2 align=center>strrchr</h2>
- <h4 align=center>OS/161 Reference Manual</h4>
- <h3>Name</h3>
- strrchr - search string for character
- <h3>Library</h3>
- Standard C Library (libc, -lc)
- <h3>Synopsis</h3>
- #include <string.h><br>
- <br>
- char *<br>
- strrchr(const char *<em>string</em>, int <em>chr</em>);
- <h3>Description</h3>
- strrchr searches <em>string</em> from the right for the first instance
- of the character <em>chr</em>.
- <h3>Return Values</h3>
- strrchr returns a pointer to the character found. If the character is
- not found, NULL is returned.
- </body>
- </html>
|