2001-02-02 17:54:47 +00:00
|
|
|
.TH str_copy 3
|
|
|
|
.SH NAME
|
|
|
|
str_copy \- copy an ASCIIZ string
|
|
|
|
.SH SYNTAX
|
|
|
|
.B #include <str.h>
|
|
|
|
|
2003-08-26 17:58:14 +00:00
|
|
|
extern long \fBstr_copy\fP(char* \fIout\fR,const char* \fIin\fR);
|
2001-02-02 17:54:47 +00:00
|
|
|
.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)
|