ftp.nice.ch/pub/next/unix/editor/vim.3.0.s.tar.gz#/vim-3.0/src/addcr.c

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

/*
 * This program, when compiled with Turbo-C, will make <LF> into <CR><LF>
 */

#include <stdio.h>

main(argc, argv)
	int argc;
	char **argv;
{
	char buffer[1024];
	int	len;

	while ((len = fread(buffer, 1, 1024, stdin)) > 0)
		fwrite(buffer, 1, len, stdout);
	if (ferror(stdin))
		fprintf(stderr, "Error while reading\n");
	if (ferror(stdout))
		fprintf(stderr, "Error while writing\n");
}

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