]>
git.saurik.com Git - apple/icu.git/blob - icuSources/common/cwchar.cpp
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 ******************************************************************************
6 * Copyright (C) 2001, International Business Machines
7 * Corporation and others. All Rights Reserved.
9 ******************************************************************************
12 * tab size: 8 (not used)
15 * created on: 2001may25
16 * created by: Markus W. Scherer
19 #include "unicode/utypes.h"
25 U_CAPI
wchar_t *uprv_wcscat(wchar_t *dst
, const wchar_t *src
) {
30 while((*dst
=*src
)!=0) {
37 U_CAPI
wchar_t *uprv_wcscpy(wchar_t *dst
, const wchar_t *src
) {
39 while((*dst
=*src
)!=0) {
46 U_CAPI
size_t uprv_wcslen(const wchar_t *src
) {
47 const wchar_t *start
=src
;