blosc2-sys 0.2.4+2.14.3

Bindings to C Blosc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(
    non_upper_case_globals,
    unused_imports,
    non_snake_case,
    improper_ctypes,
    non_camel_case_types
)]

pub use libc;
use libc::{timespec, FILE};

#[cfg(not(feature = "regenerate-bindings"))]
mod bindings;
#[cfg(not(feature = "regenerate-bindings"))]
pub use bindings::*;

#[cfg(feature = "regenerate-bindings")]
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));