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

Function _cups_isalnum

cups/string-private.h:82–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 7

create_local_printerFunction · 0.85
http_gnutls_make_pathFunction · 0.85
pwg_ppdize_nameFunction · 0.85
pwg_unppdize_nameFunction · 0.85
cupsLangGetFunction · 0.85
cups_queue_nameFunction · 0.85
http_make_pathFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected