ack/lang/pc/comp/make.tokcase

42 lines
629 B
Plaintext
Raw Permalink Normal View History

1988-10-26 15:21:11 +00:00
cat <<'--EOT--'
1989-11-17 11:44:48 +00:00
/* Generated by make.tokcase */
1994-06-24 14:02:31 +00:00
/* $Id$ */
1988-10-26 15:21:11 +00:00
#include "Lpars.h"
char *
symbol2str(tok)
int tok;
{
1989-11-17 11:44:48 +00:00
#define SIZBUF 8
/* allow for a few invocations in f.i. an argument list */
static char buf[SIZBUF];
static int index;
1988-10-26 15:21:11 +00:00
switch (tok) {
--EOT--
1989-11-17 11:44:48 +00:00
1988-10-26 15:21:11 +00:00
sed '
/{[A-Z]/!d
s/.*{\(.*\),.*\(".*"\).*$/ case \1 :\
return \2;/
'
1989-11-17 11:44:48 +00:00
1988-10-26 15:21:11 +00:00
cat <<'--EOT--'
1989-11-17 11:44:48 +00:00
default:
if (tok <= 0) return "end of file";
if (tok < 040 || tok >= 0177) {
return "bad token";
}
/* fall through */
1988-10-26 15:21:11 +00:00
case '\n':
case '\f':
case '\v':
case '\r':
case '\t':
1989-11-17 11:44:48 +00:00
index = (index+2) & (SIZBUF-1);
buf[index] = tok;
return &buf[index];
1988-10-26 15:21:11 +00:00
}
}
--EOT--