view toys/bzcat.c @ 231:31dc682c18ad

Very early stub of sed, does nothing yet.
author Rob Landley <rob@landley.net>
date Thu, 10 Jan 2008 14:34:15 -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);
}