strnchr (9) - Linux Manuals
strnchr: Find a character in a length limited string
Command to display strnchr
manual in Linux: $ man 9 strnchr
NAME
strnchr - Find a character in a length limited string
SYNOPSIS
-
char * strnchr(const char * s, size_t count, int c);
ARGUMENTS
s
-
- The string to be searched
count
-
The number of characters to be searched
c
-
The character to search for
COPYRIGHT
Pages related to strnchr
- strncasecmp (9) - Case insensitive, length-limited string comparison
- strncat (9) - Append a length-limited, C-string to another
- strncmp (9) - Compare two length-limited strings
- strncpy (9) - Copy a length-limited, C-string
- strnlen (9) - Find the length of a length-limited string
- strnstr (9) - Find the first substring in a length-limited string
- strcat (9) - Append one NUL-terminated string to another
- strchr (9) - Find the first occurrence of a character in a string