1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00
1999-06-30  Ulrich Drepper  <drepper@cygnus.com>

	* wcsmbs/wcsrchr.c: Fix handling of L'\0' parameter.
	* wcsmbs/wcschr.c: Likewise.
This commit is contained in:
Ulrich Drepper
1999-06-30 16:55:43 +00:00
parent b3fc5f84d1
commit 1cda411d51
3 changed files with 13 additions and 11 deletions

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
/* Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -25,11 +25,10 @@ wcschr (wcs, wc)
register const wchar_t *wcs;
register const wchar_t wc;
{
while (*wcs != L'\0')
do
if (*wcs == wc)
return (wchar_t *) wcs;
else
++wcs;
while (*wcs++ != L'\0')
return NULL;
}