libwchar2 0.0.10
wcsnlen manual

wcsnlen - determine the length of a fixed-size wide-character string

The wcsnlen() function is the wide-character equivalent of the strnlen(3) function. It returns the number of wide-characters in the string pointed to by s, not including the terminating null wide charac- ter L'\0', but at most maxlen wide characters (note: this parameter is not a byte count). In doing this, wcsnlen() looks at only the first maxlen wide characters at s and never beyond s+maxlen.

Return Value

The wcsnlen() function returns wcslen(s), if that is less than maxlen, or maxlen if there is no null wide character among the first maxlen wide characters pointed to by s.

Notes

The wcsnlen() function is provided in glibc since version 2.1.

See example

See also
https://github.com/ClnViewer/LibWchar2/blob/master/test/test_wcsnlen.c

LibWchar2 information
Version
libwchar2 0.0.10
Date
Wed Aug 22 2018
Author
(c) PS 2018-2018
Manual author and license