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
#include "fpzip.h"
#include "types.h"

const unsigned int fpzip_codec_version = FPZIP_CODEC;
const unsigned int fpzip_library_version = FPZIP_VERSION;
const char* const fpzip_version_string = "fpzip version " FPZIP_VERSION_STRING " (December 20, 2019)";
const unsigned int fpzip_data_model = (unsigned int)(
  ((sizeof(uint64) - 1) << 12) +
  ((sizeof(void*) - 1) << 8) +
  ((sizeof(unsigned long int) - 1) << 4) +
  ((sizeof(unsigned int) - 1) << 0)
);