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);
12 (const char *object);
13 (FcValue value);
14 (FcBool append);
15 .fi
16
18 Adds a single value to the list of values associated with the property
19 named `object. If `append is FcTrue, the value is added at the end of
20 any existing list, otherwise it is inserted at the begining. `value' is
21 saved (with FcValueSave) when inserted into the pattern so that the
22 library retains no reference to any application-supplied data strucā
23 ture.
24
26 Fontconfig version 2.8.0
27
28
29
30 18 November 2009 FcPatternAdd(3)