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