diff options
author | Max Kellermann <max@duempel.org> | 2009-01-24 15:56:34 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-24 15:56:34 +0100 |
commit | e6cb939a82d8559c338ce4cc824c55f4d58499e1 (patch) | |
tree | e5f794457752a791bfea3eb7aac301d9eba179d6 /src/locate.h | |
parent | 6a2118d04c7b73450edfffb6fdc40de1a05bfe94 (diff) | |
download | mpd-e6cb939a82d8559c338ce4cc824c55f4d58499e1.tar.gz mpd-e6cb939a82d8559c338ce4cc824c55f4d58499e1.tar.xz mpd-e6cb939a82d8559c338ce4cc824c55f4d58499e1.zip |
locate: added locate_item_list_casefold()
Merged casefolding code from two locations into this one library
function.
Diffstat (limited to 'src/locate.h')
-rw-r--r-- | src/locate.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/locate.h b/src/locate.h index 0f1bd1a64..c2d4c0ec4 100644 --- a/src/locate.h +++ b/src/locate.h @@ -63,6 +63,13 @@ locate_item_list_new(unsigned length); struct locate_item_list * locate_item_list_parse(char *argv[], int argc); +/** + * Duplicate the struct locate_item_list object and convert all + * needles with g_utf8_casefold(). + */ +struct locate_item_list * +locate_item_list_casefold(const struct locate_item_list *list); + void locate_item_list_free(struct locate_item_list *list); |