ftp.nice.ch/pub/next/unix/network/news/nn.6.4.16.s.tar.gz#/nn/cvt-help.c

This is cvt-help.c in view mode; [Download] [Up]

/*
 *	(c) Copyright 1990, Kim Fabricius Storm.  All rights reserved.
 *
 *	Convert help-files to binary.
 *	;:X	->	^X (control X)
 */

#include <stdio.h>

main()
{
    register int c;

    while ((c = getchar()) != EOF) {
	if (c == ';') {
	    c = getchar();
	    if (c == ':') {
		c = getchar();
		putchar(c & 0xf);
		continue;
	    }
	    putchar(';');
	    putchar(c);
	    continue;
	}
	if (c >= 1 && c <= 7) {
	    putchar(';');
	    putchar(':');
	    putchar(c | 0x40);
	    continue;
	}
	putchar(c);
    }

    exit(0);
}

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