centos man page for strnlen

Query: strnlen

OS: centos

Section: 9

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

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 3.10 June 2014 STRNLEN(9)
Related Man Pages
strnlen(3) - debian
strnlen(3) - osx
strnlen(3) - opendarwin
strnlen(3) - xfree86
strnlen(3) - plan9
Similar Topics in the Unix Linux Community
pointer arithmetic vs. strlen() & strnlen()?