Merge branch 'master' into sprintf

This commit is contained in:
Jeremy Soller
2018-03-10 06:46:17 -07:00
committed by GitHub
4 changed files with 23 additions and 16 deletions
+7 -15
View File
@@ -156,25 +156,17 @@ pub unsafe extern "C" fn strncat(s1: *mut c_char, s2: *const c_char, n: usize) -
#[no_mangle]
pub unsafe extern "C" fn strncmp(s1: *const c_char, s2: *const c_char, n: usize) -> c_int {
let s1 = platform::c_str_n(s1, n);
let s2 = platform::c_str_n(s2, n);
let s1 = core::slice::from_raw_parts(s1 as *const c_uchar, n);
let s2 = core::slice::from_raw_parts(s2 as *const c_uchar, n);
let min_len = n.min(s1.len()).min(s2.len());
for i in 0..min_len {
let val = s1[i] - s2[i];
if val != 0 {
return val as c_int;
for (&a, &b) in s1.iter().zip(s2.iter()) {
let val = (a as c_int) - (b as c_int);
if a != b || a == 0 {
return val;
}
}
// we can't just check for the NUL byte in the loop as c_str_n() removes it
if s1.len() > s2.len() {
s1[min_len] as c_int
} else if s1.len() < s2.len() {
-(s2[min_len] as c_int)
} else {
0
}
0
}
#[no_mangle]
+1
View File
@@ -28,5 +28,6 @@
/setid
/sprintf
/stdlib/strtol
/string/strncmp
/unlink
/write
+2 -1
View File
@@ -22,7 +22,8 @@ BINS=\
setid \
sleep \
sprintf \
stdlib/strtol \
stdlib/strtol \
string/strncmp \
unlink \
write
+13
View File
@@ -0,0 +1,13 @@
#include <string.h>
#include <stdio.h>
int main(int argc, char* argv[]) {
printf("%d\n", strncmp("a", "aa", 2));
printf("%d\n", strncmp("a", "", 2));
printf("%d\n", strncmp("\xFF", "\xFE", 2));
printf("%d\n", strncmp("", "\xFF", 1));
printf("%d\n", strncmp("a", "c", 1));
printf("%d\n", strncmp("a", "a", 2));
return 0;
}