mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
346 B
14 lines
346 B
.TH str_copy 3 |
|
.SH NAME |
|
str_copy \- copy an ASCIIZ string |
|
.SH SYNTAX |
|
.B #include <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. |
|
.SH "SEE ALSO" |
|
strlen(3)
|
|
|