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