aboutsummaryrefslogtreecommitdiff
path: root/libc/src/windows/gnu.rs
blob: a67af15a8f01d6d5efd6e3a03a64b3186006dfaa (plain)
1
2
3
4
5
6
7
8
pub const L_tmpnam: ::c_uint = 14;
pub const TMP_MAX: ::c_uint = 0x7fff;

extern {
    pub fn strcasecmp(s1: *const ::c_char, s2: *const ::c_char) -> ::c_int;
    pub fn strncasecmp(s1: *const ::c_char, s2: *const ::c_char,
                    n: ::size_t) -> ::c_int;
}