Signed-off-by: Thiago Farina <tfransosi@xxxxxxxxx> --- string-list.c | 10 ---------- string-list.h | 1 - 2 files changed, 0 insertions(+), 11 deletions(-) diff --git a/string-list.c b/string-list.c index 1ac536e..e929745 100644 --- a/string-list.c +++ b/string-list.c @@ -138,16 +138,6 @@ void string_list_clear_func(struct string_list *list, string_list_clear_func_t c list->nr = list->alloc = 0; } - -void print_string_list(const char *text, const struct string_list *p) -{ - int i; - if ( text ) - printf("%s\n", text); - for (i = 0; i < p->nr; i++) - printf("%s:%p\n", p->items[i].string, p->items[i].util); -} - struct string_list_item *string_list_append(const char *string, struct string_list *list) { ALLOC_GROW(list->items, list->nr + 1, list->alloc); diff --git a/string-list.h b/string-list.h index 6569cf6..8598257 100644 --- a/string-list.h +++ b/string-list.h @@ -12,7 +12,6 @@ struct string_list unsigned int strdup_strings:1; }; -void print_string_list(const char *text, const struct string_list *p); void string_list_clear(struct string_list *list, int free_util); /* Use this function to call a custom clear function on each util pointer */ -- 1.6.6.103.g699d2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html