Convert upper-case characters in string to lower case.
Declared in <bdlb_string.h>
static
void
toLower(char* string);
Replace all upper case characters in the specified string having the optionally specified length with their lower-case equivalent. The behavior is undefined unless 0 <= length (if specified) and string->size() <= INT_MAX (if applicable).
| Name | Description |
|---|---|
| string | null-terminated string to convert |