swh:1:snp:76adc8cf123d92909f09e46db9ddfcbecf4cd1aa
Tip revision: cdf62de27585ebda18574745ab7fc9c079c8795a authored by mohamadi on 10 February 2019, 20:46:05 UTC
nthash.hpp: added precomputed seed for faster rolling
nthash.hpp: added precomputed seed for faster rolling
Tip revision: cdf62de
Uncompress.h
#ifndef UNCOMPRESS_H
#define UNCOMPRESS_H 1
bool uncompress_init();
namespace {
const bool uncompressInitialized = uncompress_init();
bool getUncompressInitialized() __attribute__((unused));
bool getUncompressInitialized() {
return uncompressInitialized;
}
}
#endif