1byte_copy(3) Library Functions Manual byte_copy(3)
23
4
NAME
6byte_copy - copy a string
7
SYNTAX
9#include <byte.h>
1011
void byte_copy(char *out,size_t len,const char *in);
12
DESCRIPTION
14byte_copy copies in[0] to out[0], in[1] to out[1], etc., and finally
15in[len-1] to out[len-1].
1617
SEE ALSO
19byte_copyr(3)
2021
22
23
byte_copy(3)