//! [](https://github.com/arcjustin/btf/actions?query=workflow%3Abuild)
//! [](https://crates.io/crates/btf)
//! [](https://docs.rs/btf/)
//! [](https://tokei.rs/b1/github/arcjustin/btf?category=code)
//!
//! Parsing library for the eBPF type format.
//!
//! ## Usage
//!
//! ```
//! 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);
//! ```
//!
//! ## License
//!
//! * [MIT license](http://opensource.org/licenses/MIT)
pub use crate*;
pub use crate*;