https://github.com/bcgsc/ntCard
Raw File
Tip revision: 741c9417282570a71c4042f0d2022493f26c4e49 authored by Johnathan Wong on 27 January 2020, 22:56:49 UTC
release 1.2.1 (#40)
Tip revision: 741c941
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