ustrcat - Concatenates a string to another one. Allegro game programming library.
#include <allegro.h> char *ustrcat(char *dest, const char *src);
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.
Returns the value of `dest'.
uconvert(3alleg), ustrzcat(3alleg), ustrncat(3alleg), exunicod(3alleg)