Exemplo n.º 1
0
void FcValuePrintWithPosition(const FcValue v, FcBool show_pos_mark) {
    if (show_pos_mark)
        printf(" [marker] ");
    else
        printf(" ");
    _FcValuePrintFile(stdout, v);
}
Exemplo n.º 2
0
void FcValuePrint(const FcValue v) {
    printf(" ");
    _FcValuePrintFile(stdout, v);
}
Exemplo n.º 3
0
void FcValuePrint(const FcValue v) {
#ifdef _DEBUG
    printf(" ");
    _FcValuePrintFile(stdout, v);
#endif
}
Exemplo n.º 4
0
void FcValuePrintFile(FILE *f, const FcValue v) {
    fprintf(f, " ");
    _FcValuePrintFile(f, v);
}
Exemplo n.º 5
0
void FcValuePrintFile(FILE *f, const FcValue v) {
#ifdef _DEBUG
    fprintf(f, " ");
    _FcValuePrintFile(f, v);
#endif
}