1<html> 2 3<head> 4<META http-equiv="Content-Type" content="text/html; charset=windows-1252"> 5<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 7.0.0.0 for Windows"> 6<META http-equiv="Content-Style-Type" content="text/css"> 7<title>STD_SearchCharReverse</title> 8<LINK rel="stylesheet" href="../../css/nitro.css" type="text/css"> 9</head> 10 11<body> 12 13<h1 align="left">STD_SearchCharReverse<img src="../../image/NTR.gif"align="middle"><img src="../../image/TWL.gif" align="middle"></h1> 14<h2>Syntax</h2> 15<dl> 16 <dd> 17 <PRE><CODE>#include <nitro/std.h> 18 19char* STD_SearchCharReverse( char* srcp, int c ); 20 21char* STD_StrRChr( char* srcp, int c ); 22</CODE></PRE> 23 </dd> 24</dl> 25 26<h2>Arguments</h2> 27<table border="1" width="100%"> 28 <tbody> 29 <TR> 30 <TD width="200"><EM><STRONG><FONT face="Courier New">srcp</FONT></STRONG></EM></TD> 31 <TD width="800">Specifies the pointer to the string to search.</TD> 32 </TR> 33 <TR> 34 <TD width="200"><EM><STRONG><FONT face="Courier New">c</FONT></STRONG></EM></TD> 35 <TD width="800">Specifies the character to search for.</TD> 36 </TR> 37 </tbody> 38</table> 39 40<h2>Return Values</h2> 41<p> 42Returns a pointer to the final position in the character <CODE>c</CODE> within the string <CODE>srcp</CODE>.<BR>If it's not there, it returns FALSE. 43</p> 44<H2>Description</H2> 45<P>Searches through the string <CODE>srcp</CODE> for the last occurrence of character <CODE>c</CODE>. It carries out the same operation as the C standard function <CODE>strrchr()</CODE>.</P> 46<p><CODE>STD_StrRChr()</CODE> is defined as another name for <CODE>STD_SearchCharReverse()</CODE>.</p> 47<h2>See Also</h2> 48 49<H2>Revision History</H2> 50<P>2007/12/10 Initial version.</P> 51<hr><p>CONFIDENTIAL</p></body> 52</html> 53