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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
/* $OpenBSD: mkcmdtab.c,v 1.1 1996/09/07 21:40:24 downsj Exp $ */
/* vi:set ts=4 sw=4:
*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
*/
/*
* mkcmdtab.c: separate program that reads cmdtab.tab and produces cmdtab.h
*
* call with: mkcmdtab cmdtab.tab cmdtab.h
*/
#include "vim.h"
#if defined(UTS4)
int
#else
void
#endif
main(argc, argv)
int argc;
char **argv;
{
register int c;
char buffer[100];
int count;
int i;
FILE *ifp, *ofp;
if (argc != 3)
{
fprintf(stderr, "Usage: mkcmdtab cmdtab.tab cmdtab.h\n");
exit(10);
}
ifp = fopen(argv[1], "r");
if (ifp == NULL)
{
perror(argv[1]);
exit(10);
}
ofp = fopen(argv[2], "w");
if (ofp == NULL)
{
perror(argv[2]);
exit(10);
}
while ((c = getc(ifp)) != '|' && c != EOF)
putc(c, ofp);
fprintf(ofp, "THIS FILE IS AUTOMATICALLY PRODUCED - DO NOT EDIT");
while ((c = getc(ifp)) != '|' && c != EOF)
;
while ((c = getc(ifp)) != '|' && c != EOF)
putc(c, ofp);
count = 0;
while ((c = getc(ifp)) != '|' && c != EOF)
{
putc(c, ofp);
while ((c = getc(ifp)) != '"' && c != EOF)
putc(c, ofp);
putc(c, ofp);
i = 0;
while ((c = getc(ifp)) != '"' && c != EOF)
{
putc(c, ofp);
buffer[i++] = c;
}
putc(c, ofp);
buffer[i] = 0;
while ((c = getc(ifp)) != '\n' && c != EOF)
putc(c, ofp);
putc(c, ofp);
switch (buffer[0])
{
case '@': strcpy(buffer, "at");
break;
case '!': strcpy(buffer, "bang");
break;
case '<': strcpy(buffer, "lshift");
break;
case '>': strcpy(buffer, "rshift");
break;
case '=': strcpy(buffer, "equal");
break;
case '&': strcpy(buffer, "and");
break;
case '~': strcpy(buffer, "tilde");
break;
case '#': strcpy(buffer, "pound");
break;
}
fprintf(ofp, "#define CMD_%s %d\n", buffer, count++);
}
fprintf(ofp, "#define CMD_SIZE %d\n", count);
while ((c = getc(ifp)) != '|' && c != EOF)
putc(c, ofp);
if (c != '|')
{
fprintf(stderr, "not enough |'s\n");
exit(1);
}
exit(0);
}
|