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

Function _cups_toupper

cups/string-private.h:122–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120}
121
122_CUPS_INLINE int /* O - Converted character */
123_cups_toupper(int ch) /* I - Character to convert */
124{
125 return (_cups_islower(ch) ? ch - 'a' + 'A' : ch);
126}
127# else
128extern int _cups_isalnum(int ch);
129extern int _cups_isalpha(int ch);

Callers 1

exec_programFunction · 0.85

Calls 1

_cups_islowerFunction · 0.85

Tested by

no test coverage detected