File: hs-bzlib.c

package info (click to toggle)
haskell-bzlib 0.5.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 140 kB
  • sloc: haskell: 492; ansic: 13; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 184 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#include "hs-bzlib.h"

void _hs_bzlib_bzCompressEnd(bz_stream * strm) {
  BZ2_bzCompressEnd(strm);
}

void _hs_bzlib_bzDecompressEnd(bz_stream * strm) {
  BZ2_bzDecompressEnd(strm);
}