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: sáb ago 30 19:59:12 ART 2003
29 ParseError* ParseError_new(void);
31 void ParseError_delete(ParseError* pe);
34 * \return TRUE si se pudo alocar la memoria necesaria, FALSE si no.
36 bool ParseError_set_message(ParseError* pe, const char* msg);
39 * \return TRUE si se pudo alocar la memoria necesaria, FALSE si no.
41 bool ParseError_set_pos_message(ParseError* pe, const char* msg, size_t pos,
44 #endif /* PARSEERROR_H */