//! C functions not provided by compiler-builtins
//!
//! Use this instead of linking to libc if you only need a handful of free functions
use ;
// see core::ffi::c_size_t: currently, size_t is always usize
type c_size_t = usize;
extern "C"
/// # Safety
/// - `src` must be a valid C string (null terminated)
/// - `dst` must be large enough to hold `src`
unsafe
/// # Safety
/// `s` must point to valid memory; `s` will be treated as a null terminated string
pub unsafe