safec
3.0
Safe C Library - ISO TR24731 Bounds Checking Interface
|
#include "safe_str_lib.h"
Functions | |
EXPORT errno_t | strtouppercase_s (char *dest, rsize_t dmax) |
Scans the string converting lowercase characters to uppercase, leaving all other characters unchanged. More... | |
EXPORT errno_t strtouppercase_s | ( | char * | dest, |
rsize_t | dmax | ||
) |
Scans the string converting lowercase characters to uppercase, 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 |
ALSO SEE strtolowercase_s()