Tue, 20 Sep 2011 15:19:28 +0200
fixed makefile to run safely on compile errors + added -V option to cline
/* * suffix_list.c * * Created on: 15.09.2011 * Author: beckermi */ #include "suffix_list.h" suffix_list_t* new_suffix_list_t() { suffix_list_t* suffixList = malloc(sizeof(suffix_list_t)); suffixList->count = 0; suffixList->items = NULL; return suffixList; } void add_suffix(suffix_list_t* list, char* item) { char** reallocated_list = realloc(list->items, sizeof(char*) * list->count + 1); if (reallocated_list != NULL) { list->items = reallocated_list; list->items[list->count] = item; list->count++; } }