mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-347 Define the uprv_wcs* as macros that don't take arguments, so
that one can take a pointer to one of these. X-SVN-Rev: 1092
This commit is contained in:
parent
4937f212fa
commit
8c8828272a
1 changed files with 3 additions and 3 deletions
|
@ -62,9 +62,9 @@
|
|||
|
||||
/* The following are not available on all systems, defined in wchar.h or string.h . */
|
||||
#if U_HAVE_WCHAR_H
|
||||
# define uprv_wcscat(dst, src) wcscat(dst, src)
|
||||
# define uprv_wcscpy(dst, src) wcscpy(dst, src)
|
||||
# define uprv_wcslen(src) wcslen(src)
|
||||
# define uprv_wcscat wcscat
|
||||
# define uprv_wcscpy wcscpy
|
||||
# define uprv_wcslen wcslen
|
||||
#else
|
||||
U_CAPI wchar_t *uprv_wcscat(wchar_t *dst, const wchar_t *src);
|
||||
U_CAPI wchar_t *uprv_wcscpy(wchar_t *dst, const wchar_t *src);
|
||||
|
|
Loading…
Add table
Reference in a new issue