c-ward is an implementation of the libc ABI written in Rust. It consists of two crates: c-scape, which is no_std, and c-gull, which pulls in c-scape and additionally provides features using std. It is a goal of c-ward to be a C ABI layer on top of Rust-idomatic libraries, rather than to have significant implementation code of its own. In theory c-ward could be extended to be ABI-compatible with di

