+/* vim: set et sts=4 sw=4 fdm=indent fdl=1 fdn=1 fo+=t tw=80:
+ *
+ * Taller de Programación (75.42).
+ *
+ * Ejercicio Número 2:
+ * Programa calculadora.
+ *
+ * Copyleft 2003 - Leandro Lucarella <llucare@fi.uba.ar>
+ * Puede copiar, modificar y distribuir este programa bajo los términos de
+ * la licencia GPL (http://www.gnu.org/).
+ *
+ * Creado: lun sep 15 00:07:55 ART 2003
+ *
+ * $Id$
+ */
+
+#ifndef BOOL_H
+#define BOOL_H
+
+/** Tipo de dato booleano. */
+typedef enum {
+ FALSE, /**< Falso. */
+ TRUE /**< Verdadero. */
+} bool;
+
+#endif /* BOOL_H */