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
351 B
Groff
15 lines
351 B
Groff
.TH str_copy 3
|
|
.SH NAME
|
|
str_copy \- copy an ASCIIZ string
|
|
.SH SYNTAX
|
|
.B #include <str.h>
|
|
|
|
extern long \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.
|
|
.SH "SEE ALSO"
|
|
strlen(3)
|