blob: 9f2b4e04c30f3ae52d836c3e49c44dd94369497c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/* $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;
}
|