From cb5eef43b2e459fbd42bc5faabc4b3d9c4cb5611 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 30 Jan 2011 13:27:54 +0100 Subject: [PATCH] str-list.h: added str_list_export prototype. --- src/str-list.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/str-list.h b/src/str-list.h index 3e8f4e6..0826212 100644 --- a/src/str-list.h +++ b/src/str-list.h @@ -40,6 +40,8 @@ char* str_list_lookup(const struct str_list *list, const char *str); int str_list_has(const struct str_list *list, const char *str); +char** str_list_export(struct str_list *list); + #define str_list_foreach(i, l) \ for(i = (l)->items; i < (l)->items + (l)->nr; ++i)