]> git.llucax.com Git - z.facultad/75.42/calculadora.git/commitdiff
Se agregan reglas para pruebas al Makefile.
authorLeandro Lucarella <llucax@gmail.com>
Mon, 1 Sep 2003 04:24:44 +0000 (04:24 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Mon, 1 Sep 2003 04:24:44 +0000 (04:24 +0000)
Makefile
dllist.c

index ef58f640c8a5bafc46b1e0f2e7820b93363a75aa..f5a610a6b22ef7f79dd8e699fc3b7bdee3b28404 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -22,6 +22,12 @@ TARGETS=
 # Regla por defecto.
 all: tp1
 
+# Pruebas.
+tests: dllist_test
+       ./dllist_test
+
+dllist_test: dllist.o
+
 tp1: $(TARGETS)
 
 # Regla para borrar.
index 773d5e1e2f448f6b9b6ac998f1fec2669aaf3573..20f45c6896342d615fbe4fb2ca1ad90f7497b439 100644 (file)
--- a/dllist.c
+++ b/dllist.c
@@ -15,6 +15,7 @@
  */
 
 #include "dllist.h"
+/* Para usar NULL, malloc() y free(). */
 #include <stdlib.h>
 
 bool DLList_init(DLList* list) {
@@ -22,9 +23,9 @@ bool DLList_init(DLList* list) {
     /*list = (DLList*)malloc(sizeof(DLList));*/
     /* Si la obtuve, inicializo todo a NULL y devuelvo TRUE. */
     if (list) {
-        list->first      = NULL;
-        list->current    = NULL;
-        list->last       = NULL;
+        list->first   = NULL;
+        list->current = NULL;
+        list->last    = NULL;
         return TRUE;
     /* Si no hay más memoria devuelvo FALSE. */
     } else {
@@ -96,8 +97,8 @@ bool DLList_unshift(DLList* list, void* data) {
         list->current = node;
         /* Si la lista está vacía hay que hacer apuntar todo al nuevo nodo. */
         if (list->first == NULL) {
-            list->first   = node;
-            list->last    = node;
+            list->first = node;
+            list->last  = node;
         /* Si no está vacía. */
         } else {
             /* Apunto el nodo anterior al primer nodo de la lista al nuevo. */
@@ -121,8 +122,8 @@ bool DLList_push(DLList* list, void* data) {
         list->current = node;
         /* Si la lista está vacía hay que hacer apuntar todo al nuevo nodo. */
         if (list->first == NULL) {
-            list->first   = node;
-            list->last    = node;
+            list->first = node;
+            list->last  = node;
         /* Si no está vacía. */
         } else {
             /* Apunto el próximo nodo del último nodo de la lista al nuevo. */