mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-22 19:39:42 +08:00
e922f9785c
* libiberty.texi: (Top level): Add syncodeindex pg. Add @dircategory and @direntry directives. Add @finalout. (many nodes): Lose the next,prev,up pointers on the @nide line. (Using, Supplemental Functions, Replacement Functions): Fix markup. (Functions): Move around, to allow makeinfo to build the manual without next,prev,up pointers in thye node lines. (Licenses): Fix typos. * index.c, rindex.c, strchr.c, strerror.c, strrchr.c, strstr.c, strtol.c, xatexit.c, xexit.c, xmalloc.c: Fix spelling and markup. * functions.texi: Regenerate. * copying-lib.texi: Lose the next,prev,up pointers on the @node line. From-SVN: r45847
24 lines
428 B
C
24 lines
428 B
C
/* Stub implementation of (obsolete) index(). */
|
|
|
|
/*
|
|
|
|
@deftypefn Supplemental char* index (char *@var{s}, int @var{c})
|
|
|
|
Returns a pointer to the first occurrence of the character @var{c} in
|
|
the string @var{s}, or NULL if not found. The use of @code{index} is
|
|
deprecated in new programs in favor of @code{strchr}.
|
|
|
|
@end deftypefn
|
|
|
|
*/
|
|
|
|
extern char * strchr();
|
|
|
|
char *
|
|
index (s, c)
|
|
char *s;
|
|
int c;
|
|
{
|
|
return strchr (s, c);
|
|
}
|