]> git.llucax.com Git - z.facultad/75.42/calculadora.git/blob - parser_variable.h
Se agrega una primera versión (sin debuggear) del parser de variables. Se separan...
[z.facultad/75.42/calculadora.git] / parser_variable.h
1 /* vim: set et sts=4 sw=4 fdm=indent fdl=1 fdn=1 fo+=t tw=80:
2  *
3  * Taller de Programación (75.42).
4  *
5  * Ejercicio Número 2:
6  * Programa calculadora.
7  *
8  * Copyleft 2003 - Leandro Lucarella <llucare@fi.uba.ar>
9  * Puede copiar, modificar y distribuir este programa bajo los términos de
10  * la licencia GPL (http://www.gnu.org/).
11  *
12  * Creado: lun sep 15 20:22:23 ART 2003
13  *
14  * $Id$
15  */
16
17 #ifndef PARSER_VARIABLE_H
18 #define PARSER_VARIABLE_H
19
20 #include "bool.h"
21 #include "parseerror.h"
22 #include "dllist.h"
23 #include <stdlib.h>
24
25 size_t DLList_variable_print(DLList* l, FILE* fp);
26
27 void DLList_variable_delete(DLList* l);
28
29 bool parser_variable(const char* line, size_t len, DLList* variable_list,
30         ParseError* error);
31
32 #endif /* PARSER_VARIABLE_H */