blosc2-src 0.1.4

FFI bindings for c-blosc2
Documentation
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