safec
3.0
Safe C Library - ISO TR24731 Bounds Checking Interface
|
#include "safe_str_lib.h"
Functions | |
EXPORT errno_t | strcasecmp_s (const char *dest, rsize_t dmax, const char *src, int *indicator) |
Case insensitive string comparison by converting to uppercase prior to the compare. More... | |
EXPORT errno_t strcasecmp_s | ( | const char * | dest, |
rsize_t | dmax, | ||
const char * | src, | ||
int * | indicator | ||
) |
Case insensitive string comparison by converting to uppercase prior to the compare.
[in] | dest | pointer to string to compare against |
[in] | dmax | restricted maximum length of string dest |
[in] | src | pointer to the string to be compared to dest |
[out] | indicator | pointer to result indicator, greater than 0, equal to 0 or less than 0, if the string pointed to by dest is greater than, equal to or less than the string pointed to by src respectively. |
>0 | when dest greater than src |
0 | when strings the same |
<0 | when dest less than src |
EOK | when comparison is complete |
ESNULLP | when dest/src/indicator is NULL pointer |
ESZEROL | when dmax = 0 |
ESLEMAX | when dmax > RSIZE_MAX_STR |