[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.2, Thu Jul 12 05:17:03 2001 UTC (22 years, 10 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3, OPENBSD_3_2_BASE, OPENBSD_3_2, OPENBSD_3_1_BASE, OPENBSD_3_1, OPENBSD_3_0_BASE, OPENBSD_3_0
Changes since 1.1: +1 -2 lines

first pass at a -Wall cleanup

/*	$OpenBSD: file2c.c,v 1.2 2001/07/12 05:17:03 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(argc, argv)
    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;
}