From: Leandro Lucarella Date: Mon, 15 Sep 2003 04:58:53 +0000 (+0000) Subject: Se separa el tipo bool de DLList. X-Git-Tag: svn_import~15 X-Git-Url: https://git.llucax.com/z.facultad/75.42/calculadora.git/commitdiff_plain/3945d432b2a8c10cc4e9eb8b5f5c387ee7700d03 Se separa el tipo bool de DLList. --- 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;