From 83d660c76fb1287f2cd9e6b94ddccb7069a6fae5 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 31 Dec 1999 00:04:07 +0000 Subject: Update. 1999-12-30 Ulrich Drepper * 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. --- wcsmbs/wcsxfrm.c | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) (limited to 'wcsmbs/wcsxfrm.c') 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 , 1996. + Contributed by Ulrich Drepper , 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 +#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" -- cgit v1.2.3