mirror of /home/gitosis/repositories/libowfat.git
better return value documentation
parent
67193cbc4c
commit
ebbb7fbb0d
|
@ -11,3 +11,6 @@ stralloc_copyb makes sure that \fIsa\fR has enough space allocated to hold
|
|||
\fIbuf\fR into the stralloc.
|
||||
|
||||
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.
|
||||
|
|
|
@ -11,5 +11,8 @@ stralloc_copys copies a \\0-terminated string from \fIbuf\fR into
|
|||
\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)
|
||||
|
|
|
@ -12,5 +12,8 @@ stralloc_ready makes sure that \fIsa\fR has enough space allocated to hold
|
|||
not enough to hold \fIlen\fR bytes, stralloc_ready allocates at least \fIlen\fR
|
||||
bytes of space, copies the old string into the new space, frees the
|
||||
old space, and returns 1. Note that this changes \fIsa\fR.s.
|
||||
|
||||
If stralloc_ready runs out of memory, it leaves \fIsa\fR alone and
|
||||
returns 0.
|
||||
.SH "SEE ALSO"
|
||||
stralloc_readyplus(3)
|
||||
|
|
|
@ -14,5 +14,8 @@ additional bytes, stralloc_ready allocates at least
|
|||
\fIsa\fR->len+\fIlen\fR bytes of space, copies the old string into the
|
||||
new space, frees the old space, and returns 1. Note that this changes
|
||||
\fIsa\fR.s.
|
||||
|
||||
If stralloc_readyplus runs out of memory, it leaves \fIsa\fR alone and
|
||||
returns 0.
|
||||
.SH "SEE ALSO"
|
||||
stralloc_ready(3)
|
||||
|
|
Loading…
Reference in New Issue