bpflint 0.3.0

Linting functionality for BPF C programs.
Documentation
1
2
3
4
5
6
7
8
/// Overwrite the `dbg` macro in Web contexts to emit data to the
/// browser console.
#[macro_export]
macro_rules! dbg {
  ($($t:tt)*) => {
    ::web_sys::console::log_1(&format!($($t)*).into())
  };
}