https://github.com/bcgsc/ntCard
Raw File
Tip revision: c4aa22e5a5becb9d3aa31f82448f64d3be275e44 authored by Johnathan Wong on 25 September 2020, 23:47:52 UTC
release 1.2.2 (#45)
Tip revision: c4aa22e
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