view toys/bzcat.c @ 143:9cbb323f297f

Break out dirtree.c and let it call a function instead of returning the data.
author Rob Landley <rob@landley.net>
date Thu, 04 Oct 2007 02:04:10 -0500
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;
}