You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
379 B
Groff

.TH str_copy 3
.SH NAME
str_copy \- copy an ASCIIZ string
.SH SYNTAX
.B #include <libowfat/str.h>
size_t \fBstr_copy\fP(char* \fIout\fR,const char* \fIin\fR);
.SH DESCRIPTION
str_copy copies the leading bytes of \fIin\fR to \fIout\fR up to and
including the first occurrance of \\0.
str_copy returns the number of bytes copied (not including the \\0).
.SH "SEE ALSO"
strlen(3)