OS4 DepotLogo by Kicko 
(anonymous IP: 18.224.53.202,2193) 
 HomeRecentStatsSearchSubmitUploadsMirrorsContactInfoDisclaimerConfigAdmin
 Menu

 Features
   Crashlogs
   Bug tracker
   Locale browser
 

 Categories

   o Audio (343)
   o Datatype (51)
   o Demo (203)
   o Development (596)
   o Document (22)
   o Driver (97)
   o Emulation (147)
   o Game (1004)
   o Graphics (497)
   o Library (115)
   o Network (232)
   o Office (66)
   o Utility (923)
   o Video (69)

Total files: 4365

Full index file
Recent index file

 Links

  Amigans.net
  OpenAmiga
  Aminet
  IntuitionBase


Support the site


 Readme for:  Development » Utility » lemon.lha

Lemon

Description: LALR parser for C/C++ (like bison, yacc)
Download: lemon.lha       (TIPS: Use the right click menu if your browser takes you back here all the time)
Size: 108kb
Version: 1.0
Date: 04 Aug 2008
Author: Unknown (Chris Young - OS4 port)
Submitter: Steven Solie
Email: ssolie/telus net
Category: development/utility
License: Other
Distribute: yes
Min OS Version: 4.0
FileID: 3918
 
Comments: 0
Snapshots: 0
Videos: 0
Downloads: 160  (Current version)
160  (Accumulated)
Votes: 0 (0/0)  (30 days/7 days)

Show comments Show snapshots Show videos Show content Show crashlogs Replace file 
The Lemon program is an LALR(1) parser generator. It takes a context free
grammar and converts it into a subroutine that will parse a file using that
grammar.

Lemon is similar to the much more famous programs "YACC" and "BISON". But lemon
is not compatible with either yacc or bison. There are several important
differences: 

  o Lemon using a different grammar syntax which is less prone to programming
errors.

  o The parser generated by Lemon is both re-entrant and thread-safe.

  o Lemon includes the concept of a non-terminal destructor, which makes it much
easier to write a parser that does not leak memory.

The complete source code to the lemon parser generator is contained in two
files. The file lemon.c is the parser generator program itself. A separate file
lempar.c is the template for the parser subroutine that lemon generates.
Documentation on lemon is also available.

Both the source code to lemon itself and the code that lemon generates are in
the public domain. 

To see an example of how to use lemon, see the source code to the SQLite
database engine. Lemon is maintained as part of the SQLite project.


Copyright © 2004-2024 by Björn Hagström All Rights Reserved