MCPcopy Create free account
hub / github.com/OpenPrinting/cups / _cups_isalpha

Function _cups_isalpha

cups/string-private.h:90–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 */

Callers 2

_ppdOpenFunction · 0.85
ppd_decodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected