Skip to content
Snippets Groups Projects
Commit 7f29a712 authored by Paul Sajna's avatar Paul Sajna
Browse files

ctype.h skeleton

parent 3ccd24c5
No related branches found
No related tags found
No related merge requests found
/* automatically generated by rust-bindgen */
pub extern "C" fn isalnum(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn isalpha(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn isascii(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn iscntrl(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn isdigit(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn isgraph(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn islower(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn isprint(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn ispunct(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn isspace(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn isupper(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn isxdigit(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn toascii(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn tolower(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn toupper(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment