]> code.delx.au - pulseaudio/blob - polyp/strlist.h
Make the whole stuff LGPL only
[pulseaudio] / polyp / strlist.h
1 #ifndef foostrlisthfoo
2 #define foostrlisthfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of polypaudio.
8
9 polypaudio is free software; you can redistribute it and/or modify
10 it under the terms of the GNU Lesser General Public License as published
11 by the Free Software Foundation; either version 2 of the License,
12 or (at your option) any later version.
13
14 polypaudio is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public License
20 along with polypaudio; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 USA.
23 ***/
24
25 struct pa_strlist;
26
27 /* Add the specified server string to the list, return the new linked list head */
28 struct pa_strlist* pa_strlist_prepend(struct pa_strlist *l, const char *s);
29
30 /* Remove the specified string from the list, return the new linked list head */
31 struct pa_strlist* pa_strlist_remove(struct pa_strlist *l, const char *s);
32
33 /* Make a whitespace separated string of all server stringes. Returned memory has to be freed with pa_xfree() */
34 char *pa_strlist_tostring(struct pa_strlist *l);
35
36 /* Free the entire list */
37 void pa_strlist_free(struct pa_strlist *l);
38
39 /* Return the next entry in the list in *string and remove it from
40 * the list. Returns the new list head. The memory *string points to
41 * has to be freed with pa_xfree() */
42 struct pa_strlist* pa_strlist_pop(struct pa_strlist *l, char **s);
43
44 /* Parse a whitespace separated server list */
45 struct pa_strlist* pa_strlist_parse(const char *s);
46
47 #endif