Older Newer
Wed, 19 Dec 2007 18:25:40 . . . . afh [fix typos]


Changes by last author:

Added:
= strrchr =

== Syntax ==

:char* strrchr(const char* s, int c)

== Arguments ==

:s

::A pointer to the string to be scanned.

:c

::The character to find.

== Return ==

:A pointer to the character found or NULL if the character was not found.

== Description ==

:Find the last occurrence of the given character c in the string s and return its location.

== Also see ==

:strchr