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.
19 lines
610 B
Groff
19 lines
610 B
Groff
.TH stralloc_copys 3
|
|
.SH NAME
|
|
stralloc_copys \- copy data into a stralloc
|
|
.SH SYNTAX
|
|
.B #include <stralloc.h>
|
|
|
|
int \fBstralloc_copys\fP(stralloc* \fIsa\fR,const char* \fIbuf\fR);
|
|
.SH DESCRIPTION
|
|
stralloc_copys copies a \\0-terminated string from \fIbuf\fR into
|
|
\fIsa\fR, without the \\0. It is the same as
|
|
\fBstralloc_copyb\fR(&\fIsa\fR, \fIbuf\fR, str_len(\fIbuf\fR)).
|
|
|
|
The data that \fIsa\fR previously contained is overwritten and truncated.
|
|
.SH "RETURN VALUE"
|
|
If stralloc_copys runs out of memory, stralloc_copys leaves \fIsa\fR
|
|
alone and return 0, otherwise it returns 1.
|
|
.SH "SEE ALSO"
|
|
stralloc_copyb(3)
|