strncpy(9) suse man page | unix.com

Man Page: strncpy

Operating Environment: suse

Section: 9

STRNCPY(9)						     Basic C Library Functions							STRNCPY(9)

NAME
strncpy - Copy a length-limited, NUL-terminated string
SYNOPSIS
char * strncpy(char * dest, const char * src, size_t count);
ARGUMENTS
dest Where to copy the string to src Where to copy the string from count The maximum number of bytes to copy
DESCRIPTION
The result is not NUL-terminated if the source exceeds count bytes. In the case where the length of src is less than that of count, the remainder of dest will be padded with NUL.
COPYRIGHT
Kernel Hackers Manual 2.6. July 2010 STRNCPY(9)
Related Man Pages
strncpy(3) - centos
strcat(3) - linux
strcpy(3) - redhat
strcpy(3) - suse
strncat(3) - suse
Similar Topics in the Unix Linux Community
Strncpy - coredump
strncpy(ver, buffer2 +5,2);
Reg: strncpy function