1ustrcat(3) Allegro manual ustrcat(3)
2
3
4
6 ustrcat - Concatenates a string to another one. Allegro game program‐
7 ming library.
8
10 #include <allegro.h>
11
12
13 char *ustrcat(char *dest, const char *src);
14
16 This function concatenates `src' to the end of `dest`'. You should try
17 to avoid this function because it is very easy to overflow the destina‐
18 tion buffer, use ustrzcat instead.
19
21 Returns the value of `dest'.
22
23
25 uconvert(3), ustrzcat(3), ustrncat(3), exunicod(3)
26
27
28
29Allegro version 4.4.3 ustrcat(3)