Mon, 19 Sep 2011 08:11:08 +0200
added license
/* * 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++; } }