ftp.nice.ch/pub/next/games/fun/cookie.s.tar.gz#/Cookie/_Cookie/CookieV1.0/cookie.filters/cat.c

This is cat.c in view mode; [Download] [Up]

#include <stdio.h>

/* copy input to output */
main()
{
	int c;
	
	while ((c = getchar()) != EOF) {
		putchar(c);
	}
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.