Adapt the remaining plugins to put the greyscale isr on cop. Now they can be used...
[Rockbox.git] / apps / plugins / searchengine / parser.h
blobc20dde82e0de8eec8f1198e24fecf6d60f819e28
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
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);