1 /* wcschr.c - Wide Character Search for POWER6+.
2 Copyright (C) 2012-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If
17 not, see <http://www.gnu.org/licenses/>. */
22 # define WCSCHR __wcschr
23 # define DEFAULT_WCSCHR
26 /* Find the first occurrence of WC in WCS. */
28 WCSCHR (const wchar_t *wcs
, const wchar_t wc
)
30 const wchar_t *wcs2
= wcs
+ 1;
33 return (wchar_t *) wcs
;
42 return (wchar_t *) wcs2
;
48 return (wchar_t *) wcs
;
54 return (wchar_t *) wcs2
;
60 return (wchar_t *) wcs
;
66 return (wchar_t *) wcs2
;
72 return (wchar_t *) wcs
;
78 return (wchar_t *) wcs2
;
84 return (wchar_t *) wcs
;
86 while (*wcs
!= L
'\0');
91 libc_hidden_def (__wcschr
)
92 weak_alias (__wcschr
, wcschr
)
93 libc_hidden_weak (wcschr
)
95 libc_hidden_def (wcschr
)