comparison libiberty/memchr.c @ 67:f6334be47118

update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
author nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 22 Mar 2011 17:18:12 +0900
parents a06113de4d67
children
comparison
equal deleted inserted replaced
65:65488c3d617d 67:f6334be47118
1 /* 1 /*
2 2
3 @deftypefn Supplemental void* memchr (const void *@var{s}, int @var{c}, size_t @var{n}) 3 @deftypefn Supplemental void* memchr (const void *@var{s}, int @var{c}, @
4 size_t @var{n})
4 5
5 This function searches memory starting at @code{*@var{s}} for the 6 This function searches memory starting at @code{*@var{s}} for the
6 character @var{c}. The search only ends with the first occurrence of 7 character @var{c}. The search only ends with the first occurrence of
7 @var{c}, or after @var{length} characters; in particular, a null 8 @var{c}, or after @var{length} characters; in particular, a null
8 character does not terminate the search. If the character @var{c} is 9 character does not terminate the search. If the character @var{c} is