strnlen(9) suse man page | unix.com

Man Page: strnlen

Operating Environment: suse

Section: 9

STRNLEN(9)						     Basic C Library Functions							STRNLEN(9)

NAME
strnlen - Find the length of a length-limited string
SYNOPSIS
size_t strnlen(const char * s, size_t count);
ARGUMENTS
s The string to be sized count The maximum number of bytes to search
COPYRIGHT
Kernel Hackers Manual 2.6. July 2010 STRNLEN(9)
Related Man Pages
strnlen(3) - linux
string(3) - netbsd
strnlen(3p) - posix
strnlen(3) - xfree86
strnlen(3) - v7
Similar Topics in the Unix Linux Community
pointer arithmetic vs. strlen() & strnlen()?