From 49590a228daab25cf9933d96cd387c948774f7af Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Mon, 23 Feb 2009 15:35:22 +0000 Subject: added command line parameters for new logging --- src/string_list.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/string_list.h') diff --git a/src/string_list.h b/src/string_list.h index 22d3eef..fc1f4ac 100644 --- a/src/string_list.h +++ b/src/string_list.h @@ -36,13 +36,13 @@ #define _STRING_LIST_H_ struct string_list_element_struct { - char* string; - struct string_list_element_struct* next; + char* string_; + struct string_list_element_struct* next_; }; typedef struct string_list_element_struct string_list_element_t; struct string_list_struct { - string_list_element_t* first; + string_list_element_t* first_; }; typedef struct string_list_struct string_list_t; @@ -50,6 +50,6 @@ void string_list_init(string_list_t* list); void string_list_clear(string_list_t* list); int string_list_add(string_list_t* list, const char* string); -void string_list_print(string_list_t* list); +void string_list_print(string_list_t* list, const char* head, const char* tail); #endif -- cgit v1.2.3