4 * Copyright © 2003 Keith Packard
6 * Permission to use, copy, modify, distribute, and sell this software and its
7 * documentation for any purpose is hereby granted without fee, provided that
8 * the above copyright notice appear in all copies and that both that
9 * copyright notice and this permission notice appear in supporting
10 * documentation, and that the name of Keith Packard not be used in
11 * advertising or publicity pertaining to distribution of the software without
12 * specific, written prior permission. Keith Packard makes no
13 * representations about the suitability of this software for any purpose. It
14 * is provided "as is" without express or implied warranty.
16 * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22 * PERFORMANCE OF THIS SOFTWARE.
29 @PURPOSE@ create a string set
36 @TYPE1@ FcStrSet * @ARG1@ set
37 @TYPE2@ const FcChar8 * @ARG2@ s
38 @PURPOSE@ check set for membership
40 Returns whether <parameter>s</parameter> is a member of
41 <parameter>set</parameter>.
46 @TYPE1@ FcStrSet * @ARG1@ set
47 @TYPE2@ const FcChar8 * @ARG2@ s
48 @PURPOSE@ add to a string set
50 Adds a copy of <parameter>s</parameter> to <parameter>set</parameter>.
54 @FUNC@ FcStrSetAddFilename
55 @TYPE1@ FcStrSet * @ARG1@ set
56 @TYPE2@ const FcChar8 * @ARG2@ s
57 @PURPOSE@ add a filename to a string set
59 Adds a copy <parameter>s</parameter> to <parameter>set</parameter>, The copy
60 is created with FcStrCopyFilename so that leading '~' values are replaced
61 with the value of the HOME environment variable.
66 @TYPE1@ FcStrSet * @ARG1@ set
67 @TYPE2@ const FcChar8 * @ARG2@ s
68 @PURPOSE@ delete from a string set
70 Removes <parameter>s</parameter> from <parameter>set</parameter>, returning
71 FcTrue if <parameter>s</parameter> was a member else FcFalse.
75 @FUNC@ FcStrSetDestroy
76 @TYPE1@ FcStrSet * @ARG1@ set
77 @PURPOSE@ destroy a string set
79 Destroys <parameter>set</parameter>.
83 @FUNC@ FcStrListCreate
84 @TYPE1@ FcStrSet * @ARG1@ set
85 @PURPOSE@ create a string iterator
87 Creates an iterator to list the strings in <parameter>set</parameter>.
92 @TYPE1@ FcStrList * @ARG1@ list
93 @PURPOSE@ get next string in iteration
95 Returns the next string in <parameter>set</parameter>.
100 @TYPE1@ FcStrList * @ARG1@ list
101 @PURPOSE@ destroy a string iterator
103 Destroys the enumerator <parameter>list</parameter>.