Description
Source
Call Graph
strncpy
Copy the first number of bytes from source string to destination string Return the pointer to the destination string.


Syntax / parameters
char * strncpy (char *pDestination, const char *pSource, size_t count)
|
Name |
Type |
Default |
Description |
pDestination |
char *
|
|
Pointer to the start of destination string.
|
pSource |
const char *
|
|
Pointer to the start of the source string.
|
count |
size_t
|
|
Number of bytes that should be copied.
|
|
Return value |
char *
|
|
|
Description
Copy the first number of bytes from source string to destination string Return the pointer to the destination string.
Source
The documentation for this Member was generated from the following file:
string.c