| 80 | |
| 81 | # ifdef _CUPS_INLINE |
| 82 | _CUPS_INLINE int /* O - 1 on match, 0 otherwise */ |
| 83 | _cups_isalnum(int ch) /* I - Character to test */ |
| 84 | { |
| 85 | return ((ch >= '0' && ch <= '9') || |
| 86 | (ch >= 'A' && ch <= 'Z') || |
| 87 | (ch >= 'a' && ch <= 'z')); |
| 88 | } |
| 89 | |
| 90 | _CUPS_INLINE int /* O - 1 on match, 0 otherwise */ |
| 91 | _cups_isalpha(int ch) /* I - Character to test */ |
no outgoing calls
no test coverage detected