]>
git.saurik.com Git - apple/icu.git/blob - icuSources/common/cwchar.c
2 ******************************************************************************
4 * Copyright (C) 2001, International Business Machines
5 * Corporation and others. All Rights Reserved.
7 ******************************************************************************
10 * tab size: 8 (not used)
13 * created on: 2001may25
14 * created by: Markus W. Scherer
17 #include "unicode/utypes.h"
23 U_CAPI
wchar_t *uprv_wcscat(wchar_t *dst
, const wchar_t *src
) {
28 while((*dst
=*src
)!=0) {
35 U_CAPI
wchar_t *uprv_wcscpy(wchar_t *dst
, const wchar_t *src
) {
37 while((*dst
=*src
)!=0) {
44 U_CAPI
size_t uprv_wcslen(const wchar_t *src
) {
45 const wchar_t *start
=src
;