Double-byte lex and yacc?

"Michael O'Leary" <moleary@primus.com>
2 Apr 1997 16:00:13 -0500

          From comp.compilers

Related articles
Double-byte lex and yacc? moleary@primus.com (Michael O'Leary) (1997-04-02)
Re: Double-byte lex and yacc? sreeni@csc.albany.edu (1997-04-03)
Re: Double-byte lex and yacc? Julian.Orbach@unisys.com (1997-04-03)
Re: Double-byte lex and yacc? dds@flavors.com (Duncan Smith) (1997-04-06)
How to implement a double byte Lex and Yacc jukkaj@ping.at (JUKKA) (1997-04-16)
Re: Double-byte lex and yacc? moleary@primus.com (Michael O'Leary) (1997-04-16)
Re: How to implement a double byte Lex and Yacc jlilley@empathy.com (John Lilley) (1997-04-20)
[3 later articles]
| List of all articles for this month |

From: "Michael O'Leary" <moleary@primus.com>
Newsgroups: comp.compilers
Date: 2 Apr 1997 16:00:13 -0500
Organization: Primus Communications Corporation
Keywords: lex, yacc, i18n, question

Are there any versions of lex and/or yacc that are capable of
accepting double-byte character streams as input?


Michael O'Leary
moleary@primus.com
[Yacc doesn't process text, it processes tokens so the character set isn't
much of an issue. Lex is much harder, since all the versions of lex that
I know use 256 byte dispatch tables indexed by character code. This came
up a year ago, suggestions included the plan 9 versions and re2c. -John]


--


Post a followup to this message

Return to the comp.compilers page.
Search the comp.compilers archives again.