view toys/bzcat.c @ 198:3227c5316260

Update links and add some more spec comments.
author Rob Landley <rob@landley.net>
date Tue, 11 Dec 2007 15:41:31 -0600
parents 25447caf1b4b
children d4176f3f3835
line wrap: on
line source

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

#include "toys.h"

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