Go to the source code of this file.
Functions | |
char * | strncpy (char *s1, char *s2, int n) |
Definition in file strncpy.c.
char* strncpy | ( | char * | s1, | |
char * | s2, | |||
int | n | |||
) |
Copy string s2 to s1, truncating or null-padding to always copy n bytes.
s1 | first string | |
s2 | second string | |
n | length of s2 to copy |
Definition at line 16 of file strncpy.c.
Referenced by create(), platforminit(), and sysinit().