1str_copy(3) Library Functions Manual str_copy(3)
23
4
NAME
6str_copy - copy an ASCIIZ string
7
SYNTAX
9#include <str.h>
1011
size_t str_copy(char* out,const char* in);
12
DESCRIPTION
14str_copy copies the leading bytes of in to out up to and including the
15first occurrance of \0.
1617
str_copy returns the number of bytes copied.
18
SEE ALSO
20strlen(3)
2122
23
24
str_copy(3)