Searched defs:PRINTABLE (Results 1 - 1 of 1) sorted by relevance

/forgerock/web-agents-v4/pcre/
H A Dpcre_printint.c96 #define PRINTABLE(c) ((c) >= 64 && (c) < 255) macro
98 #define PRINTABLE(c) ((c) >= 32 && (c) < 127) macro
125 if (PRINTABLE(c)) fprintf(f, "%c", (char)c);
136 if (PRINTABLE(c)) fprintf(f, "%c", (char)c);
172 if (PRINTABLE(c)) fprintf(f, "%c", (char)c);
198 if (PRINTABLE(c)) fprintf(f, "%c", (char)c);
227 if (PRINTABLE(c)) fprintf(f, "%c", c); else fprintf(f, "\\x{%x}", c);
690 if (PRINTABLE(i)) fprintf(f, "%c", i);
696 if (PRINTABLE(j)) fprintf(f, "%c", j);

Completed in 30 milliseconds