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

// stdio file descriptor numbers
pub const STDIN_FILENO: ::c_int = 0;
pub const STDOUT_FILENO: ::c_int = 1;
pub const STDERR_FILENO: ::c_int = 2;

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;
}