Revision d41be49591697caacfdad5e0f7d7c62ecf3de846 authored by Étienne Mollier on 16 June 2021, 18:48:17 UTC, committed by Étienne Mollier on 16 June 2021, 18:48:17 UTC
using uint64_t should probably be both more concise and less ambiguous
than any of size_t or unsigned long long.
1 parent 8605752
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