11
11
// Original implementation taken from rust-memchr
12
12
// Copyright 2015 Andrew Gallant, bluss and Nicolas Koch
13
13
14
- use libc:: { c_void, c_int, size_t} ;
15
14
16
15
17
16
/// A safe interface to `memchr`.
@@ -27,25 +26,23 @@ use libc::{c_void, c_int, size_t};
27
26
///
28
27
/// This shows how to find the first position of a byte in a byte string.
29
28
///
30
- /// ```rust
29
+ /// ```rust,ignore
31
30
/// use memchr::memchr;
32
31
///
33
32
/// let haystack = b"the quick brown fox";
34
33
/// assert_eq!(memchr(b'k', haystack), Some(8));
35
34
/// ```
36
35
pub fn memchr ( needle : u8 , haystack : & [ u8 ] ) -> Option < usize > {
37
36
// libc memchr
38
- #[ cfg( any( not( target_os = "windows" ) ,
39
- not( any( target_pointer_width = "32" ,
40
- target_pointer_width = "64" ) ) ) ) ]
37
+ #[ cfg( not( target_os = "windows" ) ) ]
41
38
fn memchr_specific ( needle : u8 , haystack : & [ u8 ] ) -> Option < usize > {
42
- use libc:: memchr as libc_memchr ;
39
+ use libc;
43
40
44
41
let p = unsafe {
45
- libc_memchr (
46
- haystack. as_ptr ( ) as * const c_void ,
47
- needle as c_int ,
48
- haystack. len ( ) as size_t )
42
+ libc :: memchr (
43
+ haystack. as_ptr ( ) as * const libc :: c_void ,
44
+ needle as libc :: c_int ,
45
+ haystack. len ( ) as libc :: size_t )
49
46
} ;
50
47
if p. is_null ( ) {
51
48
None
@@ -55,9 +52,7 @@ pub fn memchr(needle: u8, haystack: &[u8]) -> Option<usize> {
55
52
}
56
53
57
54
// use fallback on windows, since it's faster
58
- #[ cfg( all( target_os = "windows" ,
59
- any( target_pointer_width = "32" ,
60
- target_pointer_width = "64" ) ) ) ]
55
+ #[ cfg( target_os = "windows" ) ]
61
56
fn memchr_specific ( needle : u8 , haystack : & [ u8 ] ) -> Option < usize > {
62
57
fallback:: memchr ( needle, haystack)
63
58
}
@@ -74,7 +69,7 @@ pub fn memchr(needle: u8, haystack: &[u8]) -> Option<usize> {
74
69
///
75
70
/// This shows how to find the last position of a byte in a byte string.
76
71
///
77
- /// ```rust
72
+ /// ```rust,ignore
78
73
/// use memchr::memrchr;
79
74
///
80
75
/// let haystack = b"the quick brown fox";
@@ -84,15 +79,15 @@ pub fn memrchr(needle: u8, haystack: &[u8]) -> Option<usize> {
84
79
85
80
#[ cfg( target_os = "linux" ) ]
86
81
fn memrchr_specific ( needle : u8 , haystack : & [ u8 ] ) -> Option < usize > {
87
- use libc:: memrchr as libc_memrchr ;
82
+ use libc;
88
83
89
84
// GNU's memrchr() will - unlike memchr() - error if haystack is empty.
90
85
if haystack. is_empty ( ) { return None }
91
86
let p = unsafe {
92
- libc_memrchr (
93
- haystack. as_ptr ( ) as * const c_void ,
94
- needle as c_int ,
95
- haystack. len ( ) as size_t )
87
+ libc :: memrchr (
88
+ haystack. as_ptr ( ) as * const libc :: c_void ,
89
+ needle as libc :: c_int ,
90
+ haystack. len ( ) as libc :: size_t )
96
91
} ;
97
92
if p. is_null ( ) {
98
93
None
@@ -101,16 +96,7 @@ pub fn memrchr(needle: u8, haystack: &[u8]) -> Option<usize> {
101
96
}
102
97
}
103
98
104
- #[ cfg( all( not( target_os = "linux" ) ,
105
- any( target_pointer_width = "32" , target_pointer_width = "64" ) ) ) ]
106
- fn memrchr_specific ( needle : u8 , haystack : & [ u8 ] ) -> Option < usize > {
107
- fallback:: memrchr ( needle, haystack)
108
- }
109
-
110
- // For the rare case of neither 32 bit nor 64-bit platform.
111
- #[ cfg( all( not( target_os = "linux" ) ,
112
- not( target_pointer_width = "32" ) ,
113
- not( target_pointer_width = "64" ) ) ) ]
99
+ #[ cfg( not( target_os = "linux" ) ) ]
114
100
fn memrchr_specific ( needle : u8 , haystack : & [ u8 ] ) -> Option < usize > {
115
101
haystack. iter ( ) . rposition ( |& b| b == needle)
116
102
}
0 commit comments