Sha256: efa180bf166024900ddbe4ccd7f1a802f62c7a6c34da49822c68dd5b0e28a986
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
/* ****************************************************************************** * * Copyright (C) 2001, International Business Machines * Corporation and others. All Rights Reserved. * ****************************************************************************** * file name: cwchar.c * encoding: US-ASCII * tab size: 8 (not used) * indentation:4 * * created on: 2001may25 * created by: Markus W. Scherer */ #include "unicode/utypes.h" #if !U_HAVE_WCSCPY #include "cwchar.h" U_CAPI wchar_t *uprv_wcscat(wchar_t *dst, const wchar_t *src) { wchar_t *start=dst; while(*dst!=0) { ++dst; } while((*dst=*src)!=0) { ++dst; ++src; } return start; } U_CAPI wchar_t *uprv_wcscpy(wchar_t *dst, const wchar_t *src) { wchar_t *start=dst; while((*dst=*src)!=0) { ++dst; ++src; } return start; } U_CAPI size_t uprv_wcslen(const wchar_t *src) { const wchar_t *start=src; while(*src!=0) { ++src; } return src-start; } #endif
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
node-compiler-0.7.0 | vendor/node-v6.9.1/deps/icu-small/source/common/cwchar.c |