[BACK]Return to file2c.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / file2c

File: [local] / src / usr.bin / file2c / Attic / file2c.c (download)

Revision 1.3, Thu Jun 26 21:41:37 2003 UTC (20 years, 10 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5, OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0, OPENBSD_3_9_BASE, OPENBSD_3_9, OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6, OPENBSD_3_5_BASE, OPENBSD_3_5, OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.2: +29 -29 lines

ansi and knf and protos

/*	$OpenBSD: file2c.c,v 1.3 2003/06/26 21:41:37 deraadt Exp $	*/
/*
 * ----------------------------------------------------------------------------
 * "THE BEER-WARE LICENSE" (Revision 42):
 * <phk@login.dknet.dk> wrote this file.  As long as you retain this notice you
 * can do whatever you want with this stuff. If we meet some day, and you think
 * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
 * ----------------------------------------------------------------------------
 *
 * $FreeBSD: file2c.c,v 1.1 1995/01/29 00:49:57 phk Exp $
 *
 */

#include <stdio.h>

int
main(int argc, char *argv[])
{
	int i, j, k;

	if (argc > 1)
		printf("%s\n",argv[1]);
	k = 0;
	j = 0;
	while((i = getchar()) != EOF) {
		if(k++) {
			putchar(',');
			j++;
		}
		if (j > 70) {
			putchar('\n');
			j = 0;
		}

		printf("%d", i);

		if (i > 99)
			j += 3;
		else if (i > 9)
			j += 2;
		else
			j++;
	}
	putchar('\n');
	if (argc > 2)
		printf("%s\n", argv[2]);
	return 0;
}