Function printf::printf [] [src]

pub unsafe fn printf(format: *const c_char, args: *mut c_void) -> String

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