1ustrcpy(3) Allegro manual ustrcpy(3)
2
3
4
6 ustrcpy - Copies a string into another one. Allegro game programming
7 library.
8
10 #include <allegro.h>
11
12
13 char *ustrcpy(char *dest, const char *src);
14
16 This function copies `src' (including the terminating null character
17 into `dest'. You should try to avoid this function because it is very
18 easy to overflow the destination buffer. Use ustrzcpy instead.
19
21 Returns the value of dest.
22
23
25 uconvert(3), ustrzcpy(3), ustrncpy(3), exunicod(3)
26
27
28
29Allegro version 4.2.3 ustrcpy(3)