fpzip-sys 0.3.3

Raw Rust bindings to FPZIP (https://github.com/LLNL/fpzip).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef PC_CODEC_H
#define PC_CODEC_H

#include "types.h"

#ifndef PC_BIT_MAX
  #define PC_BIT_MAX 8 // maximum bit width of directly encodable integers
#endif

namespace PC {
  template <typename U>
  uint bsr(U x);
  #include "pccodec.inl"
}

#endif