X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2Fmoof%2Fcompression.hh;fp=src%2Fmoof%2Fcompression.hh;h=b726088be3a32e51b566cf4393f9934645930c0f;hp=0000000000000000000000000000000000000000;hb=62f3ceaff75a6b08cb1aec9a465773bb81a2d79d;hpb=44b3014bce798789e795242d1556cb7449e6386a diff --git a/src/moof/compression.hh b/src/moof/compression.hh new file mode 100644 index 0000000..b726088 --- /dev/null +++ b/src/moof/compression.hh @@ -0,0 +1,26 @@ + +/*] Copyright (c) 2009-2011, Charles McGarvey [***************************** +**] All rights reserved. +* +* Distributable under the terms and conditions of the 2-clause BSD license; +* see the file COPYING for a complete text of the license. +* +*****************************************************************************/ + +#ifndef _MOOF_COMPRESSION_H_ +#define _MOOF_COMPRESSION_H_ + +#include + + +namespace moof { + + +void inflate(std::istream& in, std::ostream& out); +void inflate(const char* in, size_t size, std::ostream& out); + + +} // namespace moof + +#endif // _MOOF_COMPRESSION_H_ +