Parsing library for the eBPF type format.
use btf::Btf; let btf = Btf::from_file("/sys/kernel/btf/vmlinux").expect("Failed to parse vmlinux"); let pt_regs = btf.get_type_by_name("pt_regs").expect("Can't find type."); println!("{:?}", pt_regs);
pub use crate::btf::*;
pub use crate::error::*;