1 /* vim: set et sts=4 sw=4 fdm=indent fdl=1 fdn=1 fo+=t tw=80:
3 * Taller de Programación (75.42).
6 * Programa calculadora.
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/).
12 * Creado: lun sep 15 01:26:35 ART 2003
17 #ifndef EQUATION_LIST_H
18 #define EQUATION_LIST_H
25 size_t DLList_equation_print(DLList* l, FILE* fp);
27 void DLList_equation_delete(DLList* l);
29 void DLList_equation_eval(DLList* vl, DLList* el, FILE* fp);
31 #endif /* EQUATION_LIST_H */