view toys/bzcat.c @ 162:0864aec90026

Add an option to let touch extend or truncate a file and rename the err label to time_error to reduce confusion.
author Charlie Shepherd <masterdriverz@gentoo.org>
date Sat, 10 Nov 2007 10:03:01 +0000
parents 67ee3a0b76e1
children 25447caf1b4b
line wrap: on
line source

/* vi: set sw=4 ts=4: */
/*
 * bzcat.c - decompress stdin to stdout using bunzip2.
 */

#include "toys.h"

int bzcat_main(void)
{
	bunzipStream(0, 1);

	return 0;
}