Sha256: 7bc0f1e7e73815296cd6b63b2700e12624e9f47b5c4113a1a87fae8e64549c00

Contents?: true

Size: 594 Bytes

Versions: 2

Compression:

Stored size: 594 Bytes

Contents

use crate::prelude::*;

pub const L_tmpnam: c_uint = 260;
pub const TMP_MAX: c_uint = 0x7fff_ffff;

// POSIX Supplement (from errno.h)
// This particular error code is only currently available in msvc toolchain
pub const EOTHER: c_int = 131;

extern "C" {
    #[link_name = "_stricmp"]
    pub fn stricmp(s1: *const c_char, s2: *const c_char) -> c_int;
    #[link_name = "_strnicmp"]
    pub fn strnicmp(s1: *const c_char, s2: *const c_char, n: size_t) -> c_int;
    #[link_name = "_memccpy"]
    pub fn memccpy(dest: *mut c_void, src: *const c_void, c: c_int, count: size_t) -> *mut c_void;
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/libc-0.2.169/src/windows/msvc/mod.rs
wasmtime-28.0.0 ./ext/cargo-vendor/libc-0.2.169/src/windows/msvc/mod.rs