Home | History | Annotate | Download | only in cups

Lines Matching refs:quoted

2015   int	quoted;				/* Quoted character */
2038 quoted = (tolower(*src) - 'a' + 10) << 4;
2040 quoted = (*src - '0') << 4;
2044 quoted |= tolower(*src) - 'a' + 10;
2046 quoted |= *src - '0';
2048 *ptr++ = (char)quoted;