https://github.com/bcgsc/ntCard
Raw File
Tip revision: c9e66cc2870ea68f5a0905f9417a1935ae3a1ae1 authored by mohamadi on 12 October 2018, 22:15:45 UTC
README and version updated to 1.1.0
Tip revision: c9e66cc
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