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

Function CPLTolower

port/cpl_string.cpp:3167–3170  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

3165 * @since GDAL 3.9
3166 */
3167int CPLTolower(int c)
3168{
3169 return (c >= 'A' && c <= 'Z') ? (c - 'A' + 'a') : c;
3170}
3171
3172/************************************************************************/
3173/* CPLRemoveSQLComments() */

Callers 15

swq_test_likeFunction · 0.85
LaunderNameMethod · 0.85
decode_geohash_bboxFunction · 0.85
AVCE00DeleteCoverageFunction · 0.85
AVCBinWriteCreateTableFunction · 0.85
LaunderNameMethod · 0.85
LaunderNameMethod · 0.85
GetSymbolStyleStringMethod · 0.85
OGRPGCommonLaunderNameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected