|
|
1.1 root 1:
2:
3: strcat() String Function strcat()
4:
5:
6:
7:
8: Concatenate strings
9:
10: #include <string.h>
11: cchhaarr *ssttrrccaatt(_s_t_r_i_n_g_1, _s_t_r_i_n_g_2) cchhaarr *_s_t_r_i_n_g_1, *_s_t_r_i_n_g_2;
12:
13: strcat appends all characters in string2 onto the end of string1.
14: It returns the modified string1.
15:
16: ***** Example *****
17:
18: For an example of this function, see the entry for string
19: functions.
20:
21: ***** See Also *****
22:
23: string functions, string.h, strncat()
24:
25: ***** Notes *****
26:
27: string1 must point to enough space to hold itself and string2;
28: otherwise, another portion of the program may be overwritten.
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64: COHERENT Lexicon Page 1
65:
66:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.