]> git.llucax.com Git - z.facultad/75.42/calculadora.git/commitdiff
Se separa el tipo bool de DLList.
authorLeandro Lucarella <llucax@gmail.com>
Mon, 15 Sep 2003 04:58:53 +0000 (04:58 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Mon, 15 Sep 2003 04:58:53 +0000 (04:58 +0000)
bool.h [new file with mode: 0644]
dllist.h

diff --git a/bool.h b/bool.h
new file mode 100644 (file)
index 0000000..3f2a6de
--- /dev/null
+++ b/bool.h
@@ -0,0 +1,26 @@
+/* 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 */
index 10edb6c9a6f693a47f2277debcbb3f39935a8370..674fbc3b34f19195cfa9d2a5b66e278ee4381062 100644 (file)
--- a/dllist.h
+++ b/dllist.h
 #ifndef DLLIST_H
 #define DLLIST_H
 
 #ifndef DLLIST_H
 #define DLLIST_H
 
-/** Tipo de dato booleano. */
-typedef enum {
-    FALSE,      /**< Falso. */
-    TRUE        /**< Verdadero. */
-} bool;
+#include "bool.h"
 
 /** Nodo de la lista doblemente enlazada. */
 typedef struct DLNodeStruct DLNode;
 
 /** Nodo de la lista doblemente enlazada. */
 typedef struct DLNodeStruct DLNode;