Defined in header <string.h> | ||
|---|---|---|
size_t strlen( const char *str ); | (1) | |
size_t strnlen_s( const char *str, size_t strsz ); | (2) | (since C11) |
str up to and not including the first null character.str is not a pointer to a null-terminated byte string.str is a null pointer and returns strsz if the null character was not found in the first strsz bytes of str.str points to a character array which lacks the null character and the size of that character array < strsz; in other words, an erroneous value of strsz does not expose the impending buffer overflow. As with all bounds-checked functions, strnlen_s only guaranteed to be available if __STDC_LIB_EXT1__ is defined by the implementation and if the user defines __STDC_WANT_LIB_EXT1__ to the integer constant 1 before including <string.h>.| str | - | pointer to the null-terminated byte string to be examined |
| strsz | - | maximum number of characters to examine |
str.str on success, zero if str is a null pointer, strsz if the null character was not found.strnlen_s and wcsnlen_s are the only bounds-checked functions that do not invoke the runtime constraints handler. They are pure utility functions used to provide limited support for non-null terminated strings.
#define __STDC_WANT_LIB_EXT1__ 1
#include <string.h>
#include <stdio.h>
int main(void)
{
const char str[] = "How many characters does this string contain?";
printf("without null character: %zu\n", strlen(str));
printf("with null character: %zu\n", sizeof str);
#ifdef __STDC_LIB_EXT1__
printf("without null character: %zu\n", strnlen_s(str, sizeof str));
#endif
}Possible output:
without null character: 45 with null character: 46 without null character: 45
|
(C95)(C11) | returns the length of a wide string (function) |
| returns the number of bytes in the next multibyte character (function) |
|
C++ documentation for strlen |
|
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/c/string/byte/strlen