X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmemchr.c;h=dc3bec7c85068a4c8c5c468dd3c834c05cd0dda2;hb=6aae241f16ed2dbe57475cb4c8b3a5b1ca1e9699;hp=57f99735f337ae9c412d77b6d838c1ba3b934dd2;hpb=ff9e18a3c9c9b659fee0f2c65269a38a2d133bde;p=gnulib.git diff --git a/lib/memchr.c b/lib/memchr.c index 57f99735f..dc3bec7c8 100644 --- a/lib/memchr.c +++ b/lib/memchr.c @@ -33,12 +33,12 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ # define __ptr_t char * #endif /* C++ or ANSI C. */ -#if defined (HAVE_STRING_H) || defined (_LIBC) +#if defined (_LIBC) # include #endif -#if defined (HAVE_LIMIT_H) || defined (_LIBC) -# include +#if defined (HAVE_LIMITS_H) || defined (_LIBC) +# include #endif #define LONG_MAX_32_BITS 2147483647 @@ -66,8 +66,9 @@ memchr (s, c, n) /* Handle the first few characters by reading one character at a time. Do this until CHAR_PTR is aligned on a longword boundary. */ - for (char_ptr = s; n > 0 && ((unsigned long int) char_ptr - & (sizeof (longword) - 1)) != 0; + for (char_ptr = (const unsigned char *) s; + n > 0 && ((unsigned long int) char_ptr + & (sizeof (longword) - 1)) != 0; --n, ++char_ptr) if (*char_ptr == c) return (__ptr_t) char_ptr; @@ -80,9 +81,9 @@ memchr (s, c, n) /* Bits 31, 24, 16, and 8 of this number are zero. Call these bits the "holes." Note that there is a hole just to the left of each byte, with an extra at the end: - + bits: 01111110 11111110 11111110 11111111 - bytes: AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDD + bytes: AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDD The 1-bits make sure that carries propagate to the next 0-bit. The 0-bits provide holes for carries to fall into. */ @@ -146,10 +147,10 @@ memchr (s, c, n) /* Add MAGIC_BITS to LONGWORD. */ if ((((longword + magic_bits) - + /* Set those bits that were unchanged by the addition. */ ^ ~longword) - + /* Look at only the hole bits. If any of the hole bits are unchanged, most likely one of the bytes was a zero. */