pub type t_libpd_printhook = Option<unsafe extern "C" fn(s: *const c_char)>;
Expand description

print receive hook signature, s is the string to be printed note: default behavior returns individual words and spaces: line “hello 123” is received in 4 parts -> “hello”, “ “, “123\n”