From 3945d432b2a8c10cc4e9eb8b5f5c387ee7700d03 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Mon, 15 Sep 2003 04:58:53 +0000 Subject: [PATCH] Se separa el tipo bool de DLList. --- bool.h | 26 ++++++++++++++++++++++++++ dllist.h | 6 +----- 2 files changed, 27 insertions(+), 5 deletions(-) create mode 100644 bool.h diff --git a/bool.h b/bool.h new file mode 100644 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 + * 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 */ diff --git a/dllist.h b/dllist.h index 10edb6c..674fbc3 100644 --- a/dllist.h +++ b/dllist.h @@ -17,11 +17,7 @@ #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; -- 2.43.0