1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 by Michiel van der Kolk
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 extern struct token
*currentToken
;
20 extern int syntaxerror
;
21 extern char errormsg
[250];
23 unsigned char *parse(int fd
);
24 void parser_acceptIt(void);
25 int parser_accept(unsigned char kind
);
26 unsigned char *parseCompareNum(void);
27 unsigned char *parseCompareString(void);
28 unsigned char *parseExpr(void);
29 unsigned char *parseMExpr(void);
30 unsigned char *parseLExpr(void);