diff -r 1a2d7298bc82 -r fa9bda32de17 string_list.c --- a/string_list.c Tue Oct 02 10:49:25 2012 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,34 +0,0 @@ -/* - * string_list.c - * - * Created on: 15.09.2011 - * Author: Mike - */ - -#include "string_list.h" - -string_list_t* new_string_list_t() { - string_list_t* stringList = malloc(sizeof(string_list_t)); - stringList->count = 0; - stringList->items = NULL; - - return stringList; -} - -void destroy_string_list_t(string_list_t* list) { - if (list->items != NULL) { - free(list->items); - } - free(list); -} - -void add_string(string_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++; - } -} -