.\" Automatically generated by Pandoc 3.6.1 .\" .TH "al_ustr_append" "3" "" "Allegro reference manual" .SH NAME al_ustr_append \- Allegro 5 API .SH SYNOPSIS .IP .EX #include \f[B]\f[R] bool al_ustr_append(ALLEGRO_USTR *us1, const ALLEGRO_USTR *us2) .EE .SH DESCRIPTION Append \f[CR]us2\f[R] to the end of \f[CR]us1\f[R]. .PP Returns true on success, false on error. .PP This function can be used to append an arbitrary buffer: .IP .EX ALLEGRO_USTR_INFO info; al_ustr_append(us, al_ref_buffer(&info, buf, size)); .EE .SH SEE ALSO al_ustr_append_cstr(3), al_ustr_append_chr(3), al_ustr_appendf(3), al_ustr_vappendf(3)