macro_rules! valgrind_printf_unchecked { ($($arg:tt)*) => { ... }; }
Available on crate feature
client_requests_defs only.Expand description
Allow prints to valgrind log
Use this macro only if you are sure there are no \0-bytes in the formatted string. If
unsure use the safe crate::valgrind_printf variant.
This variant performs better than crate::valgrind_printf.