Revision e8d401c263cbfbceb868263157ba2cab277084ca authored by Johnathan Wong on 24 January 2020, 23:25:27 UTC, committed by GitHub on 24 January 2020, 23:25:27 UTC
1 parent e2eafd5
Raw File
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