diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-12-31 00:04:07 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-12-31 00:04:07 +0000 |
commit | 83d660c76fb1287f2cd9e6b94ddccb7069a6fae5 (patch) | |
tree | 487671d11bec5118f65a145ef262b2a49b11d098 /wcsmbs/wcsxfrm.c | |
parent | 9eb157c8750f70adc4c35f09127055444672b63d (diff) | |
download | glibc-83d660c76fb1287f2cd9e6b94ddccb7069a6fae5.tar.gz glibc-83d660c76fb1287f2cd9e6b94ddccb7069a6fae5.tar.xz glibc-83d660c76fb1287f2cd9e6b94ddccb7069a6fae5.zip |
Update.
1999-12-30 Ulrich Drepper <drepper@cygnus.com> * wcsmbs/wcscoll.c: Use multibyte character version. * wcsmbs/wcsxfrm.c: Likewise. * string/strcoll.c: Prepare to be used for the wide character version. * string/strxfrm.c: Likewise. * locale/weightwc.h: New file.
Diffstat (limited to 'wcsmbs/wcsxfrm.c')
-rw-r--r-- | wcsmbs/wcsxfrm.c | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/wcsmbs/wcsxfrm.c b/wcsmbs/wcsxfrm.c index 99a359399e..c515657244 100644 --- a/wcsmbs/wcsxfrm.c +++ b/wcsmbs/wcsxfrm.c @@ -1,6 +1,6 @@ /* Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1996. + Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as @@ -19,23 +19,19 @@ #include <wchar.h> +#define STRING_TYPE wchar_t +#define USTRING_TYPE wint_t #ifdef USE_IN_EXTENDED_LOCALE_MODEL # define STRXFRM __wcsxfrm_l #else # define STRXFRM wcsxfrm #endif - - -#ifndef USE_IN_EXTENDED_LOCALE_MODEL -size_t -STRXFRM (wchar_t *dest, const wchar_t *src, size_t n) -#else -size_t -STRXFRM (wchar_t *dest, const wchar_t *src, size_t n, __locale_t l) -#endif -{ - if (n != 0) - __wcpncpy (dest, src, n); - - return __wcslen (src); -} +#define STRCMP wcscmp +#define STRLEN wcslen +#define STPNCPY __wcpncpy +#define WEIGHT_H "../locale/weightwc.h" +#define SUFFIX WC +#define L(arg) L##arg +#define WIDE_CHAR_VERSION 1 + +#include "../string/strxfrm.c" |