simplify change mode dialog
[gcalctool.git] / gcalctool / parser.h
blob4ea87842bd7ed3d0ed3fee949822f1291540a694
2 /* $Header$
4 * Copyright (C) 2004-2007 Sami Pietila
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
22 #ifndef PARSER_H
23 #define PARSER_H
25 #include "mp.h"
27 #define ANS 1
29 #define PARSER_ERR_INVALID_BASE 10000
30 #define PARSER_ERR_TOO_LONG_NUMBER 10001
31 #define PARSER_ERR_BITWISEOP 10002
32 #define PARSER_ERR_MODULUSOP 10003
34 struct parser_state {
35 int flags;
36 char *buff;
37 int i;
38 int error;
39 int ret[MP_SIZE];
40 int ncount;
43 void cp(int s[MP_SIZE], int t[MP_SIZE]);
44 void ret(int s[MP_SIZE]);
45 void iret(int s[MP_SIZE]);
47 void check_numbase(char *num);
49 #endif /*PARSER_H*/