diff -r 1a2d7298bc82 -r fa9bda32de17 string_list.h --- a/string_list.h Tue Oct 02 10:49:25 2012 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,30 +0,0 @@ -/* - * string_list.h - * - * Created on: 15.09.2011 - * Author: Mike - */ - -#ifndef STRING_LIST_H_ -#define STRING_LIST_H_ - -#include "stdinc.h" - -typedef struct _string_list { - size_t count; - char** items; -} string_list_t; - -#ifdef _cplusplus -extern "C" { -#endif - -string_list_t* new_string_list_t(); -void destroy_string_list_t(string_list_t*); -void add_string(string_list_t*, char*); - -#ifdef _cplusplus -} -#endif - -#endif /* STRING_LIST_H_ */