Thu, 15 Sep 2011 13:38:03 +0200
Merge with 1dd63a32ffc486b71399045cf8443ec6ac9d7bf5
/* * 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++; } }