| 95 | } |
| 96 | |
| 97 | _CUPS_INLINE int /* O - 1 on match, 0 otherwise */ |
| 98 | _cups_islower(int ch) /* I - Character to test */ |
| 99 | { |
| 100 | return (ch >= 'a' && ch <= 'z'); |
| 101 | } |
| 102 | |
| 103 | _CUPS_INLINE int /* O - 1 on match, 0 otherwise */ |
| 104 | _cups_isspace(int ch) /* I - Character to test */ |
no outgoing calls
no test coverage detected