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.
16 lines
493 B
16 lines
493 B
.TH stralloc_cat 3 |
|
.SH NAME |
|
stralloc_cat \- append data to a stralloc |
|
.SH SYNTAX |
|
.B #include <stralloc.h> |
|
|
|
int \fBstralloc_cat\fP(stralloc* \fIsato\fR,stralloc* \fIsafrom\fR); |
|
.SH DESCRIPTION |
|
stralloc_cat appends the string stored in \fIsafrom\fR to \fIsa\fR. It |
|
is the same as |
|
\fBstralloc_catb\fR(&\fIsato\fR, \fIsafrom\fR.s, \fIsafrom\fR.len). |
|
\fIsafrom\fR must already be allocated. |
|
|
|
The data that \fIsa\fR previously contained is overwritten and truncated. |
|
.SH "SEE ALSO" |
|
stralloc_catb(3)
|
|
|