]> git.llucax.com Git - z.facultad/75.42/calculadora.git/blob - equation_list.h
Últimos retoques.
[z.facultad/75.42/calculadora.git] / equation_list.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 01:26:35 ART 2003
13  *
14  * $Id$
15  */
16
17 #ifndef EQUATION_LIST_H
18 #define EQUATION_LIST_H
19
20 #include "bool.h"
21 #include "dllist.h"
22 #include <stdlib.h>
23 #include <stdio.h>
24
25 size_t DLList_equation_print(DLList* l, FILE* fp);
26
27 void DLList_equation_delete(DLList* l);
28
29 void DLList_equation_eval(DLList* vl, DLList* el, FILE* fp);
30
31 #endif /* EQUATION_LIST_H */