binutils-gdb/libiberty/index.c

22 lines
448 B
C
Raw Normal View History

1999-05-03 09:29:11 +02:00
/* Stub implementation of (obsolete) index(). */
2001-09-26 20:45:50 +02:00
/*
@deftypefn Supplemental char* index (char *@var{s}, int @var{c})
2001-09-27 22:27:58 +02:00
Returns a pointer to the first occurrence of the character @var{c} in
2001-10-08 00:42:23 +02:00
the string @var{s}, or @code{NULL} if not found. The use of @code{index} is
2001-09-26 20:45:50 +02:00
deprecated in new programs in favor of @code{strchr}.
@end deftypefn
*/
2005-03-28 04:09:01 +02:00
extern char * strchr(const char *, int);
1999-05-03 09:29:11 +02:00
char *
2005-04-02 22:20:01 +02:00
index (const char *s, int c)
1999-05-03 09:29:11 +02:00
{
return strchr (s, c);
}