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