https://github.com/bcgsc/ntCard
Raw File
Tip revision: cdf62de27585ebda18574745ab7fc9c079c8795a authored by mohamadi on 10 February 2019, 20:46:05 UTC
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
back to top