1
by brian
clean slate |
1 |
/* Copyright (C) 2000 MySQL AB
|
2 |
||
3 |
This program is free software; you can redistribute it and/or modify
|
|
4 |
it under the terms of the GNU General Public License as published by
|
|
5 |
the Free Software Foundation; version 2 of the License.
|
|
6 |
||
7 |
This program is distributed in the hope that it will be useful,
|
|
8 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
9 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
10 |
GNU General Public License for more details.
|
|
11 |
||
12 |
You should have received a copy of the GNU General Public License
|
|
13 |
along with this program; if not, write to the Free Software
|
|
14 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
15 |
||
16 |
/* File : strcat.c
|
|
17 |
Author : Richard A. O'Keefe.
|
|
18 |
Updated: 10 April 1984
|
|
19 |
Defines: strcat()
|
|
20 |
||
21 |
strcat(s, t) concatenates t on the end of s. There had better be
|
|
22 |
enough room in the space s points to; strcat has no way to tell.
|
|
23 |
Note that strcat has to search for the end of s, so if you are doing
|
|
24 |
a lot of concatenating it may be better to use strmov, e.g.
|
|
25 |
strmov(strmov(strmov(strmov(s,a),b),c),d)
|
|
26 |
rather than
|
|
27 |
strcat(strcat(strcat(strcpy(s,a),b),c),d).
|
|
28 |
strcat returns the old value of s.
|
|
29 |
*/
|
|
30 |
||
31 |
#include "strings.h" |
|
32 |
||
33 |
char *strcat(register char *s, register const char *t) |
|
34 |
{
|
|
35 |
char *save; |
|
36 |
||
37 |
for (save = s; *s++; ) ; |
|
38 |
for (--s; *s++ = *t++; ) ; |
|
39 |
return save; |
|
40 |
}
|