Thu, 06 Oct 2011 00:06:30 +0200
fixed suffixList realloc bug + added destroy_suffix_list_t
/* * 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 destroy_suffix_list_t(suffix_list_t* list) { if (list->items != NULL) { free(list->items); } free(list); } 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++; } }