summaryrefslogtreecommitdiff
path: root/src/cloudabi
diff options
context:
space:
mode:
authorTom Parker-Shemilt <palfrey@tevp.net>2018-11-23 21:21:24 +0000
committerTom Parker-Shemilt <palfrey@tevp.net>2018-11-23 21:26:02 +0000
commitb75803751f102b1d672fddeac3391ef7a65ad68c (patch)
treeb97a7f98f3fbbee7f3b6c166bab13f3c22714ea5 /src/cloudabi
parent46f08b52a9dbb164461b39118a44aa6453b030f8 (diff)
downloadrust-libc-b75803751f102b1d672fddeac3391ef7a65ad68c.tar.gz
strcase*: Add cloudabi support
Diffstat (limited to 'src/cloudabi')
-rw-r--r--src/cloudabi/mod.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cloudabi/mod.rs b/src/cloudabi/mod.rs
index f72eeb4d24..02b7974ff4 100644
--- a/src/cloudabi/mod.rs
+++ b/src/cloudabi/mod.rs
@@ -185,6 +185,8 @@ extern {
pub fn atexit(cb: extern fn()) -> c_int;
pub fn system(s: *const c_char) -> c_int;
pub fn getenv(s: *const c_char) -> *mut c_char;
+ pub fn getline (lineptr: *mut *mut c_char, n: *mut size_t,
+ stream: *mut FILE) -> ssize_t;
pub fn strcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char;
pub fn strncpy(dst: *mut c_char, src: *const c_char,
@@ -201,6 +203,9 @@ extern {
pub fn strdup(cs: *const c_char) -> *mut c_char;
pub fn strpbrk(cs: *const c_char, ct: *const c_char) -> *mut c_char;
pub fn strstr(cs: *const c_char, ct: *const c_char) -> *mut c_char;
+ 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;
pub fn strlen(cs: *const c_char) -> size_t;
pub fn strnlen(cs: *const c_char, maxlen: size_t) -> size_t;
pub fn strerror(n: c_int) -> *mut c_char;