Scans the string converting uppercase characters to lowercase, leaving all other characters unchanged.
The scanning stops at the first null or after dmax characters.
- Parameters
-
[out] | dest | pointer to string |
[in] | dmax | maximum length of string |
- Precondition
- dest shall not be a null pointer.
-
dmax shall not equal zero.
-
dmax shall not be greater than RSIZE_MAX_STR.
- Return values
-
EOK | when successful operation |
ESNULLP | when dest is NULL pointer |
ESZEROL | when dmax = 0 |
ESLEMAX | when dmax > RSIZE_MAX_STR |
- See also
- strtouppercase_s()