about summary refs log tree commit diff
path: root/wcsmbs/wcsncmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'wcsmbs/wcsncmp.c')
-rw-r--r--wcsmbs/wcsncmp.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/wcsmbs/wcsncmp.c b/wcsmbs/wcsncmp.c
index 3df6bfc151..fb554cbfb5 100644
--- a/wcsmbs/wcsncmp.c
+++ b/wcsmbs/wcsncmp.c
@@ -1,6 +1,6 @@
 /* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
 This file is part of the GNU C Library.
-Contributed by Ulrich Drepper, <drepper@gnu.ai.mit.edu>
+Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
 
 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
@@ -13,9 +13,9 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Library General Public License for more details.
 
 You should have received a copy of the GNU Library General Public
-License along with the GNU C Library; see the file COPYING.LIB.	 If
-not, write to the Free Software Foundation, Inc., 675 Mass Ave,
-Cambridge, MA 02139, USA.  */
+License along with the GNU C Library; see the file COPYING.LIB.  If
+not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.  */
 
 #include <wchar.h>
 
@@ -30,28 +30,28 @@ wcsncmp (s1, s2, n)
      const wchar_t *s2;
      size_t n;
 {
-  uwchar_t c1 = L'\0';
-  uwchar_t c2 = L'\0';
+  wint_t c1 = L'\0';
+  wint_t c2 = L'\0';
 
   if (n >= 4)
     {
       size_t n4 = n >> 2;
       do
 	{
-	  c1 = (uwchar_t) *s1++;
-	  c2 = (uwchar_t) *s2++;
+	  c1 = (wint_t) *s1++;
+	  c2 = (wint_t) *s2++;
 	  if (c1 == L'\0' || c1 != c2)
 	    return c1 - c2;
-	  c1 = (uwchar_t) *s1++;
-	  c2 = (uwchar_t) *s2++;
+	  c1 = (wint_t) *s1++;
+	  c2 = (wint_t) *s2++;
 	  if (c1 == L'\0' || c1 != c2)
 	    return c1 - c2;
-	  c1 = (uwchar_t) *s1++;
-	  c2 = (uwchar_t) *s2++;
+	  c1 = (wint_t) *s1++;
+	  c2 = (wint_t) *s2++;
 	  if (c1 == L'\0' || c1 != c2)
 	    return c1 - c2;
-	  c1 = (uwchar_t) *s1++;
-	  c2 = (uwchar_t) *s2++;
+	  c1 = (wint_t) *s1++;
+	  c2 = (wint_t) *s2++;
 	  if (c1 == L'\0' || c1 != c2)
 	    return c1 - c2;
 	} while (--n4 > 0);
@@ -60,8 +60,8 @@ wcsncmp (s1, s2, n)
 
   while (n > 0)
     {
-      c1 = (uwchar_t) *s1++;
-      c2 = (uwchar_t) *s2++;
+      c1 = (wint_t) *s1++;
+      c2 = (wint_t) *s2++;
       if (c1 == L'\0' || c1 != c2)
 	return c1 - c2;
       n--;