MCPcopy Create free account
hub / github.com/OSGeo/gdal / CPLToupper

Function CPLToupper

port/cpl_string.cpp:3152–3155  ·  view source on GitHub ↗

Converts a (ASCII) lowercase character to uppercase. * * Same as standard toupper(), except that it is not locale sensitive. * * @since GDAL 3.9 */

Source from the content-addressed store, hash-verified

3150 * @since GDAL 3.9
3151 */
3152int CPLToupper(int c)
3153{
3154 return (c >= 'a' && c <= 'z') ? (c - 'a' + 'A') : c;
3155}
3156
3157/************************************************************************/
3158/* CPLTolower() */

Callers 15

importFromPCIMethod · 0.85
ACTextUnescapeFunction · 0.85
cmpStrFunction · 0.85
CleanNameMethod · 0.85
_AVCE00WriteRenameTableFunction · 0.85
AVCE00GenStartSectionFunction · 0.85
LaunderNameMethod · 0.85
BuildKeyMethod · 0.85
GetLabelStyleStringMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected