libc 0.2.2

A library for types and bindings to native C functions often found in libc or other common platform libraries.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
s! {
    pub struct glob_t {
        pub gl_pathc:  ::c_int,
        pub gl_matchc: ::c_int,
        pub gl_offs:   ::c_int,
        pub gl_flags:  ::c_int,
        pub gl_pathv:  *mut *mut ::c_char,
        __unused1: *mut ::c_void,
        __unused2: *mut ::c_void,
        __unused3: *mut ::c_void,
        __unused4: *mut ::c_void,
        __unused5: *mut ::c_void,
        __unused6: *mut ::c_void,
        __unused7: *mut ::c_void,
    }
}