Converts a (ASCII) uppercase character to lowercase. * * Same as standard tolower(), except that it is not locale sensitive. * * @since GDAL 3.9 */
| 3165 | * @since GDAL 3.9 |
| 3166 | */ |
| 3167 | int CPLTolower(int c) |
| 3168 | { |
| 3169 | return (c >= 'A' && c <= 'Z') ? (c - 'A' + 'a') : c; |
| 3170 | } |
| 3171 | |
| 3172 | /************************************************************************/ |
| 3173 | /* CPLRemoveSQLComments() */ |
no outgoing calls
no test coverage detected