1FcPatternAdd(3) FcPatternAdd(3)
2
3
4
6 FcPatternAdd - Add a value to a pattern
7
9 #include <fontconfig.h>
10
11 FcBool FcPatternAdd (FcPattern *p, const char *object, FcValue value, FcBool append);
12
14 Adds a single value to the list of values associated with the property
15 named `object. If `append is FcTrue, the value is added at the end of
16 any existing list, otherwise it is inserted at the begining. `value'
17 is saved (with FcValueSave) when inserted into the pattern so that the
18 library retains no reference to any application-supplied data strucā
19 ture.
20
22 Fontconfig version 2.4.2
23
24
25
26 11 May 2007 FcPatternAdd(3)