remove unused types

This commit is contained in:
dignifiedquire
2019-05-06 10:59:24 +02:00
parent afa80f55e9
commit 29a9a408ef
8 changed files with 226 additions and 1199 deletions

View File

@@ -126,7 +126,7 @@ unsafe fn hex_2_int(mut ch: libc::c_char) -> libc::c_char {
return (if 0 != isdigit(ch as libc::c_int) {
ch as libc::c_int - '0' as i32
} else {
tolower(ch as libc::c_int) - 'a' as i32 + 10i32
libc::tolower(ch as libc::c_int) - 'a' as i32 + 10i32
}) as libc::c_char;
}