|
safec
2.1
Safe C Library - ISO TR24731 Bounds Checking Interface
|
#include "safeclib_private.h"#include "safe_str_constraint.h"#include "safe_str_lib.h"
Include dependency graph for strtolowercase_s.c:Go to the source code of this file.
Functions | |
| errno_t | strtolowercase_s (char *restrict dest, rsize_t dmax) |
| Scans the string converting uppercase characters to lowercase, leaving all other characters unchanged. More... | |
| errno_t strtolowercase_s | ( | char *restrict | dest, |
| rsize_t | dmax | ||
| ) |
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 |
Definition at line 66 of file strtolowercase_s.c.