FcStrSetCreate
3
FcStrSetCreate
create a string set
#include <fontconfig/fontconfig.h>
FcStrSet * FcStrSetCreate
void
Description
Create an empty set.
Version
Fontconfig version &version;
FcStrSetMember
3
FcStrSetMember
check set for membership
#include <fontconfig/fontconfig.h>
FcBool FcStrSetMember
FcStrSet *set
const FcChar8 *s
Description
Returns whether s is a member of
set.
Version
Fontconfig version &version;
FcStrSetEqual
3
FcStrSetEqual
check sets for equality
#include <fontconfig/fontconfig.h>
FcBool FcStrSetEqual
FcStrSet *set_a
FcStrSet *set_b
Description
Returns whether set_a contains precisely the same
strings as set_b. Ordering of strings within the two
sets is not considered.
Version
Fontconfig version &version;
FcStrSetAdd
3
FcStrSetAdd
add to a string set
#include <fontconfig/fontconfig.h>
FcBool FcStrSetAdd
FcStrSet *set
const FcChar8 *s
Description
Adds a copy of s to set.
Version
Fontconfig version &version;
FcStrSetAddFilename
3
FcStrSetAddFilename
add a filename to a string set
#include <fontconfig/fontconfig.h>
FcBool FcStrSetAddFilename
FcStrSet *set
const FcChar8 *s
Description
Adds a copy s to set, The copy
is created with FcStrCopyFilename so that leading '~' values are replaced
with the value of the HOME environment variable.
Version
Fontconfig version &version;
FcStrSetDel
3
FcStrSetDel
delete from a string set
#include <fontconfig/fontconfig.h>
FcBool FcStrSetDel
FcStrSet *set
const FcChar8 *s
Description
Removes s from set, returning
FcTrue if s was a member else FcFalse.
Version
Fontconfig version &version;
FcStrSetDestroy
3
FcStrSetDestroy
destroy a string set
#include <fontconfig/fontconfig.h>
void FcStrSetDestroy
FcStrSet *set
Description
Destroys set.
Version
Fontconfig version &version;
FcStrListCreate
3
FcStrListCreate
create a string iterator
#include <fontconfig/fontconfig.h>
FcStrList * FcStrListCreate
FcStrSet *set
Description
Creates an iterator to list the strings in set.
Version
Fontconfig version &version;
FcStrListNext
3
FcStrListNext
get next string in iteration
#include <fontconfig/fontconfig.h>
FcChar8 * FcStrListNext
FcStrList *list
Description
Returns the next string in set.
Version
Fontconfig version &version;
FcStrListDone
3
FcStrListDone
destroy a string iterator
#include <fontconfig/fontconfig.h>
void FcStrListDone
FcStrList *list
Description
Destroys the enumerator list.
Version
Fontconfig version &version;