Macro libc_print::libc_println
source · macro_rules! libc_println {
($($arg:tt)*) => { ... };
}Expand description
Macro for printing to the standard output, with a newline.
Does not panic on failure to write - instead silently ignores errors.
See println! for
full documentation.
You may wish to use libc_print::std_name::* to use a replacement
println! macro instead of this longer name.