Site Search
Library
linux docs
linux man pages
Toys
world sunlight
moon phase
byte_copy(3) - Linux man page
Name
byte_copy - copy a string
Syntax
#include <byte.h>
void
byte_copy
(char *
out
,size_t
len
,const char *
in
);
Description
byte_copy
copies
in
[0] to
out
[0],
in
[1] to
out
[1], etc., and finally
in
[
len
-1] to
out
[
len
-1].
See Also
byte_copyr
(3)
Referenced By
byte_zero
(3)