]> git.ipfire.org Git - thirdparty/gcc.git/blob - libiberty/index.c
configure.in (MAKEINFO, PERL): Detect these.
[thirdparty/gcc.git] / libiberty / index.c
1 /* Stub implementation of (obsolete) index(). */
2
3 /*
4
5 @deftypefn Supplemental char* index (char *@var{s}, int @var{c})
6
7 Returns a pointer to the first occurance of the character @var{c} in
8 the string @var{s}, or NULL if not found. The use of @code{index} is
9 deprecated in new programs in favor of @code{strchr}.
10
11 @end deftypefn
12
13 */
14
15 extern char * strchr();
16
17 char *
18 index (s, c)
19 char *s;
20 int c;
21 {
22 return strchr (s, c);
23 }