comment!() { /* proc-macro */ }
Insert a literal comment into the kernel source code.
#use ruda_kernel_macros::ruda; #[ruda] fn do_stuff(input: u32) -> u32 { comment!("Add five to the input"); input + 5 }