Ignore:
Timestamp:
Aug 16, 2003, 6:59:22 PM (22 years ago)
Author:
bird
Message:

binutils v2.14 - offical sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/binutils/libiberty/strchr.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
    33
    44/*
    5 NAME
    6         strchr -- return pointer to first occurance of a character
    75
    8 SYNOPSIS
    9         char *strchr (const char *s, int c)
     6@deftypefn Supplemental char* strchr (const char *@var{s}, int @var{c})
    107
    11 DESCRIPTION
    12         Returns a pointer to the first occurance of character C in
    13         string S, or a NULL pointer if no occurance is found.
    14        
    15 BUGS
    16         Behavior when character is the null character is implementation
    17         dependent.
     8Returns a pointer to the first occurrence of the character @var{c} in
     9the string @var{s}, or @code{NULL} if not found.  If @var{c} is itself the
     10null character, the results are undefined.
     11
     12@end deftypefn
     13
    1814*/
    1915
Note: See TracChangeset for help on using the changeset viewer.