//! This crate provides a method to convert printf-style calls to a rust formatter
extern crate libc;
use CStr;
use libc as c;
extern "C"
/// Take a printf c-string and variadic array, and write equiv. out to the formatter
///
/// # Safety
/// This function is UB if the va_list doesn't match the format (c printf syntax)
///
/// There must be no panics in this function, so quite often errors are deliberately ignored
pub unsafe