| 88 | } |
| 89 | |
| 90 | _CUPS_INLINE int /* O - 1 on match, 0 otherwise */ |
| 91 | _cups_isalpha(int ch) /* I - Character to test */ |
| 92 | { |
| 93 | return ((ch >= 'A' && ch <= 'Z') || |
| 94 | (ch >= 'a' && ch <= 'z')); |
| 95 | } |
| 96 | |
| 97 | _CUPS_INLINE int /* O - 1 on match, 0 otherwise */ |
| 98 | _cups_islower(int ch) /* I - Character to test */ |
no outgoing calls
no test coverage detected