sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* FUNCTION
|
sl@0
|
16 |
* <<strcat>>---concatenate strings
|
sl@0
|
17 |
* INDEX
|
sl@0
|
18 |
* strcat
|
sl@0
|
19 |
* ANSI_SYNOPSIS
|
sl@0
|
20 |
* #include <string.h>
|
sl@0
|
21 |
* char *strcat(char *<[dst]>, const char *<[src]>);
|
sl@0
|
22 |
* TRAD_SYNOPSIS
|
sl@0
|
23 |
* #include <string.h>
|
sl@0
|
24 |
* char *strcat(<[dst]>, <[src]>)
|
sl@0
|
25 |
* char *<[dst]>;
|
sl@0
|
26 |
* char *<[src]>;
|
sl@0
|
27 |
* <<strcat>> appends a copy of the string pointed to by <[src]>
|
sl@0
|
28 |
* (including the terminating null character) to the end of the
|
sl@0
|
29 |
* string pointed to by <[dst]>. The initial character of
|
sl@0
|
30 |
* <[src]> overwrites the null character at the end of <[dst]>.
|
sl@0
|
31 |
* RETURNS
|
sl@0
|
32 |
* This function returns the initial value of <[dst]>
|
sl@0
|
33 |
* PORTABILITY
|
sl@0
|
34 |
* <<strcat>> is ANSI C.
|
sl@0
|
35 |
* <<strcat>> requires no supporting OS subroutines.
|
sl@0
|
36 |
* QUICKREF
|
sl@0
|
37 |
* strcat ansi pure
|
sl@0
|
38 |
*
|
sl@0
|
39 |
*
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
|
sl@0
|
42 |
|
sl@0
|
43 |
|
sl@0
|
44 |
#include <string.h>
|
sl@0
|
45 |
|
sl@0
|
46 |
/*SUPPRESS 560*/
|
sl@0
|
47 |
/*SUPPRESS 530*/
|
sl@0
|
48 |
|
sl@0
|
49 |
/**
|
sl@0
|
50 |
Append string.
|
sl@0
|
51 |
Appends s2 string to s1 string.
|
sl@0
|
52 |
The terminating null character in s1 is overwritten by the first character of s2.
|
sl@0
|
53 |
The resulting string includes a null-character at end.
|
sl@0
|
54 |
@return s1.
|
sl@0
|
55 |
@param s1 Pointer to a null-terminated string with enough space allocated to
|
sl@0
|
56 |
contain both s2 and s1.
|
sl@0
|
57 |
@param s2 Null-terminated string to append.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
EXPORT_C char * strcat (char *s1, const char *s2)
|
sl@0
|
60 |
{
|
sl@0
|
61 |
char *s = s1;
|
sl@0
|
62 |
|
sl@0
|
63 |
while (*s1)
|
sl@0
|
64 |
s1++;
|
sl@0
|
65 |
|
sl@0
|
66 |
while ((*s1++ = *s2++)!=0)
|
sl@0
|
67 |
;
|
sl@0
|
68 |
return s;
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
/**
|
sl@0
|
72 |
Append a copy of the wide-character string pointed to by s2
|
sl@0
|
73 |
@return s1
|
sl@0
|
74 |
@param s1 wide-character
|
sl@0
|
75 |
@param s2 wide-character
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
EXPORT_C wchar_t * wcscat (wchar_t *s1, const wchar_t *s2)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
wchar_t *s = s1;
|
sl@0
|
80 |
|
sl@0
|
81 |
while (*s1)
|
sl@0
|
82 |
s1++;
|
sl@0
|
83 |
|
sl@0
|
84 |
while ((*s1++ = *s2++)!=L'\0')
|
sl@0
|
85 |
;
|
sl@0
|
86 |
return s;
|
sl@0
|
87 |
}
|