| 108 | } |
| 109 | |
| 110 | _CUPS_INLINE int /* O - 1 on match, 0 otherwise */ |
| 111 | _cups_isupper(int ch) /* I - Character to test */ |
| 112 | { |
| 113 | return (ch >= 'A' && ch <= 'Z'); |
| 114 | } |
| 115 | |
| 116 | _CUPS_INLINE int /* O - Converted character */ |
| 117 | _cups_tolower(int ch) /* I - Character to convert */ |
no outgoing calls
no test coverage detected