safec
3.2
Safe C Library - ISO TR24731 Bounds Checking Interface
|
#include "safe_str_lib.h"
Functions | |
EXPORT errno_t | strtolowercase_s (char *restrict dest, rsize_t dmax) |
Scans the string converting uppercase characters to lowercase, leaving all other characters unchanged. More... | |
Scans the string converting uppercase characters to lowercase, leaving all other characters unchanged.
The scanning stops at the first null or after dmax characters.
[out] | dest | pointer to string |
[in] | dmax | maximum length of string |
EOK | when successful operation |
ESNULLP | when dest is NULL pointer |
ESZEROL | when dmax = 0 |
ESLEMAX | when dmax > RSIZE_MAX_STR |