Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 1559 of file triostr.c.
{ size_t length; assert(self); assert(other); length = self->length + trio_length(other); if (!TrioStringGrowTo(self, length)) goto error; trio_copy(&self->content[self->length], other); self->length = length; return TRUE; error: return FALSE; }