예제 #1
0
파일: fcdbg.c 프로젝트: rconde01/fontconfig
void FcValuePrintWithPosition(const FcValue v, FcBool show_pos_mark) {
    if (show_pos_mark)
        printf(" [marker] ");
    else
        printf(" ");
    _FcValuePrintFile(stdout, v);
}
예제 #2
0
파일: fcdbg.c 프로젝트: rconde01/fontconfig
void FcValuePrint(const FcValue v) {
    printf(" ");
    _FcValuePrintFile(stdout, v);
}
예제 #3
0
파일: fcdbg.c 프로젝트: tgoyne/fontconfig
void FcValuePrint(const FcValue v) {
#ifdef _DEBUG
    printf(" ");
    _FcValuePrintFile(stdout, v);
#endif
}
예제 #4
0
파일: fcdbg.c 프로젝트: rconde01/fontconfig
void FcValuePrintFile(FILE *f, const FcValue v) {
    fprintf(f, " ");
    _FcValuePrintFile(f, v);
}
예제 #5
0
파일: fcdbg.c 프로젝트: tgoyne/fontconfig
void FcValuePrintFile(FILE *f, const FcValue v) {
#ifdef _DEBUG
    fprintf(f, " ");
    _FcValuePrintFile(f, v);
#endif
}