blosc2-sys 0.4.0+2.15.2

Bindings to C Blosc2
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef INLINE_H
#define INLINE_H

#ifndef inline_
  #if __STDC_VERSION__ >= 199901L
    #define inline_ static inline
  #else
    #define inline_ static
  #endif
#endif

#endif