1995-10-23 01:34:17 +00:00
|
|
|
/*-
|
2017-11-20 19:49:47 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1995-10-23 01:34:17 +00:00
|
|
|
* Copyright (c) 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Paul Borman at Krystal Technologies.
|
|
|
|
*
|
2011-11-20 14:45:42 +00:00
|
|
|
* Copyright (c) 2011 The FreeBSD Foundation
|
|
|
|
* All rights reserved.
|
|
|
|
* Portions of this software were developed by David Chisnall
|
|
|
|
* under sponsorship from the FreeBSD Foundation.
|
|
|
|
*
|
1995-10-23 01:34:17 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1995-10-23 01:34:17 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2002-03-22 21:53:29 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2005-09-12 19:52:42 +00:00
|
|
|
#include <ctype.h>
|
1994-09-24 15:59:33 +00:00
|
|
|
#include <stdio.h>
|
2004-07-29 06:16:19 +00:00
|
|
|
#include <runetype.h>
|
2011-11-20 14:45:42 +00:00
|
|
|
#include <wchar.h>
|
|
|
|
#include "mblocal.h"
|
1994-09-24 15:59:33 +00:00
|
|
|
|
2002-08-21 16:20:02 +00:00
|
|
|
__ct_rune_t
|
2015-09-20 20:50:18 +00:00
|
|
|
___toupper_l(__ct_rune_t c, locale_t l)
|
1994-09-24 15:59:33 +00:00
|
|
|
{
|
2004-05-09 13:04:49 +00:00
|
|
|
size_t lim;
|
2011-11-20 14:45:42 +00:00
|
|
|
FIX_LOCALE(l);
|
2012-05-10 20:03:34 +00:00
|
|
|
_RuneRange *rr = &XLOCALE_CTYPE(l)->runes->__mapupper_ext;
|
2004-05-09 13:04:49 +00:00
|
|
|
_RuneEntry *base, *re;
|
1994-09-24 15:59:33 +00:00
|
|
|
|
1996-03-25 13:43:24 +00:00
|
|
|
if (c < 0 || c == EOF)
|
|
|
|
return(c);
|
|
|
|
|
2004-05-09 13:04:49 +00:00
|
|
|
/* Binary search -- see bsearch.c for explanation. */
|
2004-06-23 07:01:44 +00:00
|
|
|
base = rr->__ranges;
|
|
|
|
for (lim = rr->__nranges; lim != 0; lim >>= 1) {
|
2004-05-09 13:04:49 +00:00
|
|
|
re = base + (lim >> 1);
|
2004-06-23 07:01:44 +00:00
|
|
|
if (re->__min <= c && c <= re->__max)
|
2011-11-20 14:45:42 +00:00
|
|
|
{
|
2004-06-23 07:01:44 +00:00
|
|
|
return (re->__map + c - re->__min);
|
2011-11-20 14:45:42 +00:00
|
|
|
}
|
2004-06-23 07:01:44 +00:00
|
|
|
else if (c > re->__max) {
|
2004-05-09 13:04:49 +00:00
|
|
|
base = re + 1;
|
|
|
|
lim--;
|
|
|
|
}
|
1994-09-24 15:59:33 +00:00
|
|
|
}
|
2000-06-03 12:24:08 +00:00
|
|
|
|
1994-09-24 15:59:33 +00:00
|
|
|
return(c);
|
|
|
|
}
|
2011-11-20 14:45:42 +00:00
|
|
|
__ct_rune_t
|
2015-09-20 20:50:18 +00:00
|
|
|
___toupper(__ct_rune_t c)
|
2011-11-20 14:45:42 +00:00
|
|
|
{
|
|
|
|
return ___toupper_l(c, __get_locale());
|
|
|
|
}
|