.\" Generated by the Allegro makedoc utility .TH ustrcat 3alleg4 "version 4.4.2" "Allegro" "Allegro manual" .SH NAME ustrcat \- Concatenates a string to another one. Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B char *ustrcat(char *dest, const char *src); .SH DESCRIPTION This function concatenates `src' to the end of `dest`'. You should try to avoid this function because it is very easy to overflow the destination buffer, use ustrzcat instead. .SH "RETURN VALUE" Returns the value of `dest'. .SH SEE ALSO .BR uconvert (3alleg4), .BR ustrzcat (3alleg4), .BR ustrncat (3alleg4), .BR exunicod (3alleg4)