We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c4e0de commit 7eed4d0Copy full SHA for 7eed4d0
src/lib.rs
@@ -227,6 +227,7 @@ extern "C" {
227
pub fn fputs(s: *const c_char, stream: *mut FILE) -> c_int;
228
pub fn puts(s: *const c_char) -> c_int;
229
pub fn ungetc(c: c_int, stream: *mut FILE) -> c_int;
230
+ pub fn getline (lineptr: *mut *mut c_char, n: *mut size_t, stream: *mut FILE) -> ssize_t;
231
pub fn fread(ptr: *mut c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t;
232
#[cfg_attr(
233
all(target_os = "macos", target_arch = "x86"),
0 commit comments