Crate libc_print
source ·Expand description
Implements println! and eprintln! on top of the libc crate without requiring
the use of an allocator.
Allows you to use these macros in a #![no_std] context, or in a situation where the traditional Rust streams might not be available (ie: at process shutdown time).
Usage
Exactly as you’d use println! or eprintln!.
Modules
This package contains the
libc_print macros, but using the stdlib names
such as println!, print!, etc.Macros
Macro for printing to the standard error.
Macro for printing to the standard error, with a newline.
Macro for printing to the standard error.
Macro for printing to the standard error, with a newline.
Macro for printing to the standard output.
Macro for printing to the standard output, with a newline.
Macro for printing to the standard output.
Macro for printing to the standard error, with a newline.