3 <<memchr>>---search for character in memory
10 void * memchr(const void *<[s1]>, int <[c]>, size_t <[n]>);
14 void * memchr(<[s1]>, <[c]>, <[n]>);
20 This function scans the first <[n]> bytes of the memory pointed
21 to by <[s1]> for the character <[c]> (converted to a char).
24 Returns a pointer to the matching byte, or a null pointer if
25 <[c]> does not occur in <[s1]>.
30 <<memchr>> requires no supporting OS subroutines.
38 #include "_ansi.h" /* for _DEFUN */
40 /* Nonzero if X is not aligned on a "long" boundary. */
41 #define UNALIGNED(X) ((long)X & (sizeof (long) - 1))
43 /* How many bytes are loaded each iteration of the word copy loop. */
44 #define LBLOCKSIZE (sizeof (long))
46 #if LONG_MAX == 2147483647L
47 #define DETECTNULL(X) (((X) - 0x01010101) & ~(X) & 0x80808080)
49 #if LONG_MAX == 9223372036854775807L
50 /* Nonzero if X (a long int) contains a NULL byte. */
51 #define DETECTNULL(X) (((X) - 0x0101010101010101) & ~(X) & 0x8080808080808080)
53 #error long int is not a 32bit or 64bit type.
57 /* DETECTCHAR returns nonzero if (long)X contains the byte used
58 to fill (long)MASK. */
59 #define DETECTCHAR(X,MASK) (DETECTNULL(X ^ MASK))
62 _DEFUN (memchr
, (s1
, i
, n
),
66 _CONST
unsigned char *s
= (_CONST
unsigned char *)s1
;
67 #if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)
68 unsigned char c
= (unsigned char)i
;
81 unsigned char c
= (unsigned char)i
;
83 unsigned long *aligned_addr
;
88 for (j
= 0; j
< LBLOCKSIZE
; j
++)
89 mask
= (mask
<< 8) | c
;
91 aligned_addr
= (unsigned long*)s
;
92 while ((!DETECTCHAR (*aligned_addr
, mask
)) && (n
>LBLOCKSIZE
))
98 /* The block of bytes currently pointed to by aligned_addr
99 may contain the target character or there may be less than
100 LBLOCKSIZE bytes left to search. We check the last few
101 bytes using the bytewise search. */
103 s
= (unsigned char*)aligned_addr
;
116 #endif /* not PREFER_SIZE_OVER_SPEED */