blob: 30437bb876e1ae466643b02d647d490c5a9e6ca0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* vi: set sw=4 ts=4: */
/*
* bzcat.c - decompress stdin to stdout using bunzip2.
*/
#include "toys.h"
int bzcat_main(void)
{
char *error = bunzipStream(0, 1);
if (error) error_exit(error);
return 0;
}
|