Switch to the OpenBSD wcsto* functions.
This replaces a partial set of non-functional functions with a complete set of functions, all of which actually work. This requires us to implement mbsnrtowcs and wcsnrtombs which completes the set of what we need for libc++. The mbsnrtowcs is basically a copy & paste of wcsnrtombs, but I'm going to go straight to looking at using the OpenBSD UTF-8 implementation rather than keep polishing our home-grown turd. (This patch also opportunistically switches us over to upstream btowc, mbrlen, and wctob, since they're all trivially expressed in terms of other functions.) Change-Id: I0f81443840de0f1aa73b96f0b51988976793a323
This commit is contained in:
153
libc/upstream-openbsd/lib/libc/locale/_wcstod.h
Normal file
153
libc/upstream-openbsd/lib/libc/locale/_wcstod.h
Normal file
@@ -0,0 +1,153 @@
|
||||
/* $OpenBSD: _wcstod.h,v 1.2 2013/06/02 15:22:20 matthew Exp $ */
|
||||
/* $NetBSD: wcstod.c,v 1.4 2001/10/28 12:08:43 yamt Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c)1999, 2000, 2001 Citrus Project,
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
||||
*
|
||||
* $Citrus: xpg4dl/FreeBSD/lib/libc/locale/wcstod.c,v 1.2 2001/09/27 16:23:57 yamt Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
* function template for wcstof, wcstod and wcstold.
|
||||
*
|
||||
* parameters:
|
||||
* FUNCNAME : function name
|
||||
* float_type : return type
|
||||
* STRTOD_FUNC : conversion function
|
||||
*/
|
||||
|
||||
float_type
|
||||
FUNCNAME(const wchar_t *nptr, wchar_t **endptr)
|
||||
{
|
||||
const wchar_t *src;
|
||||
size_t size;
|
||||
const wchar_t *start;
|
||||
const wchar_t *aftersign;
|
||||
|
||||
/*
|
||||
* check length of string and call strtod
|
||||
*/
|
||||
src = nptr;
|
||||
|
||||
/* skip space first */
|
||||
while (iswspace(*src)) {
|
||||
src++;
|
||||
}
|
||||
|
||||
/* get length of string */
|
||||
start = src;
|
||||
if (*src && wcschr(L"+-", *src))
|
||||
src++;
|
||||
aftersign = src;
|
||||
if (wcsncasecmp(src, L"inf", 3) == 0) {
|
||||
src += 3;
|
||||
if (wcsncasecmp(src, L"inity", 5) == 0)
|
||||
src += 5;
|
||||
goto match;
|
||||
}
|
||||
if (wcsncasecmp(src, L"nan", 3) == 0) {
|
||||
src += 3;
|
||||
if (*src == L'(') {
|
||||
size = 1;
|
||||
while (src[size] != L'\0' && src[size] != L')')
|
||||
size++;
|
||||
if (src[size] == L')')
|
||||
src += size + 1;
|
||||
}
|
||||
goto match;
|
||||
}
|
||||
size = wcsspn(src, L"0123456789");
|
||||
src += size;
|
||||
if (*src == L'.') {/* XXX use localeconv */
|
||||
src++;
|
||||
size = wcsspn(src, L"0123456789");
|
||||
src += size;
|
||||
}
|
||||
if (*src && wcschr(L"Ee", *src)) {
|
||||
src++;
|
||||
if (*src && wcschr(L"+-", *src))
|
||||
src++;
|
||||
size = wcsspn(src, L"0123456789");
|
||||
src += size;
|
||||
}
|
||||
match:
|
||||
size = src - start;
|
||||
|
||||
/*
|
||||
* convert to a char-string and pass it to strtod.
|
||||
*/
|
||||
if (src > aftersign) {
|
||||
mbstate_t st;
|
||||
char *buf;
|
||||
char *end;
|
||||
const wchar_t *s;
|
||||
size_t size_converted;
|
||||
float_type result;
|
||||
size_t bufsize;
|
||||
|
||||
s = start;
|
||||
memset(&st, 0, sizeof(st));
|
||||
bufsize = wcsnrtombs(NULL, &s, size, 0, &st);
|
||||
|
||||
buf = malloc(bufsize + 1);
|
||||
if (!buf) {
|
||||
errno = ENOMEM; /* XXX */
|
||||
goto fail;
|
||||
}
|
||||
|
||||
s = start;
|
||||
memset(&st, 0, sizeof(st));
|
||||
size_converted = wcsnrtombs(buf, &s, size, bufsize, &st);
|
||||
if (size_converted != bufsize) {
|
||||
/* XXX should not happen */
|
||||
free(buf);
|
||||
errno = EILSEQ;
|
||||
goto fail;
|
||||
}
|
||||
|
||||
buf[bufsize] = 0;
|
||||
result = STRTOD_FUNC(buf, &end);
|
||||
|
||||
if (endptr) {
|
||||
const char *s = buf;
|
||||
memset(&st, 0, sizeof(st));
|
||||
size = mbsnrtowcs(NULL, &s, end - buf, 0, &st);
|
||||
|
||||
/* LINTED bad interface */
|
||||
*endptr = (wchar_t*)start + size;
|
||||
}
|
||||
|
||||
free(buf);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
fail:
|
||||
if (endptr)
|
||||
/* LINTED bad interface */
|
||||
*endptr = (wchar_t*)nptr;
|
||||
|
||||
return 0;
|
||||
}
|
136
libc/upstream-openbsd/lib/libc/locale/_wcstol.h
Normal file
136
libc/upstream-openbsd/lib/libc/locale/_wcstol.h
Normal file
@@ -0,0 +1,136 @@
|
||||
/* $OpenBSD: _wcstol.h,v 1.1 2005/07/01 08:59:27 espie Exp $ */
|
||||
/* $NetBSD: _wcstol.h,v 1.2 2003/08/07 16:43:03 agc Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1990, 1993
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
* 3. Neither the name of the University nor the names of its contributors
|
||||
* 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.
|
||||
*
|
||||
* Original version ID:
|
||||
* @(#)strtol.c 8.1 (Berkeley) 6/4/93
|
||||
* NetBSD: wcstol.c,v 1.1 2001/09/27 16:30:36 yamt Exp
|
||||
* Citrus: xpg4dl/FreeBSD/lib/libc/locale/wcstol.c,v 1.2 2001/09/21 16:11:41 yamt Exp
|
||||
*/
|
||||
|
||||
/*
|
||||
* function template for wcstol, wcstoll and wcstoimax.
|
||||
*
|
||||
* parameters:
|
||||
* FUNCNAME : function name
|
||||
* int_type : return type
|
||||
* MIN_VALUE : lower limit of the return type
|
||||
* MAX_VALUE : upper limit of the return type
|
||||
*/
|
||||
|
||||
int_type
|
||||
FUNCNAME(const wchar_t *nptr, wchar_t **endptr, int base)
|
||||
{
|
||||
const wchar_t *s;
|
||||
int_type acc, cutoff;
|
||||
wint_t wc;
|
||||
int i;
|
||||
int neg, any, cutlim;
|
||||
|
||||
/* check base value */
|
||||
if (base && (base < 2 || base > 36)) {
|
||||
errno = EINVAL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Skip white space and pick up leading +/- sign if any.
|
||||
* If base is 0, allow 0x for hex and 0 for octal, else
|
||||
* assume decimal; if base is already 16, allow 0x.
|
||||
*/
|
||||
s = nptr;
|
||||
do {
|
||||
wc = (wchar_t) *s++;
|
||||
} while (iswspace(wc));
|
||||
if (wc == L'-') {
|
||||
neg = 1;
|
||||
wc = *s++;
|
||||
} else {
|
||||
neg = 0;
|
||||
if (wc == L'+')
|
||||
wc = *s++;
|
||||
}
|
||||
if ((base == 0 || base == 16) &&
|
||||
wc == L'0' && (*s == L'x' || *s == L'X')) {
|
||||
wc = s[1];
|
||||
s += 2;
|
||||
base = 16;
|
||||
}
|
||||
if (base == 0)
|
||||
base = wc == L'0' ? 8 : 10;
|
||||
|
||||
/*
|
||||
* See strtol for comments as to the logic used.
|
||||
*/
|
||||
cutoff = neg ? MIN_VALUE : MAX_VALUE;
|
||||
cutlim = (int)(cutoff % base);
|
||||
cutoff /= base;
|
||||
if (neg) {
|
||||
if (cutlim > 0) {
|
||||
cutlim -= base;
|
||||
cutoff += 1;
|
||||
}
|
||||
cutlim = -cutlim;
|
||||
}
|
||||
for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
|
||||
i = wctoint(wc);
|
||||
if (i == -1)
|
||||
break;
|
||||
if (i >= base)
|
||||
break;
|
||||
if (any < 0)
|
||||
continue;
|
||||
if (neg) {
|
||||
if (acc < cutoff || (acc == cutoff && i > cutlim)) {
|
||||
any = -1;
|
||||
acc = MIN_VALUE;
|
||||
errno = ERANGE;
|
||||
} else {
|
||||
any = 1;
|
||||
acc *= base;
|
||||
acc -= i;
|
||||
}
|
||||
} else {
|
||||
if (acc > cutoff || (acc == cutoff && i > cutlim)) {
|
||||
any = -1;
|
||||
acc = MAX_VALUE;
|
||||
errno = ERANGE;
|
||||
} else {
|
||||
any = 1;
|
||||
acc *= base;
|
||||
acc += i;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (endptr != 0)
|
||||
/* LINTED interface specification */
|
||||
*endptr = (wchar_t *)(any ? s - 1 : nptr);
|
||||
return (acc);
|
||||
}
|
116
libc/upstream-openbsd/lib/libc/locale/_wcstoul.h
Normal file
116
libc/upstream-openbsd/lib/libc/locale/_wcstoul.h
Normal file
@@ -0,0 +1,116 @@
|
||||
/* $OpenBSD: _wcstoul.h,v 1.1 2005/07/01 08:59:27 espie Exp $ */
|
||||
/* $NetBSD: _wcstoul.h,v 1.2 2003/08/07 16:43:03 agc Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1990, 1993
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
* 3. Neither the name of the University nor the names of its contributors
|
||||
* 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.
|
||||
*
|
||||
* Original version ID:
|
||||
* @(#)strtoul.c 8.1 (Berkeley) 6/4/93
|
||||
* Citrus: xpg4dl/FreeBSD/lib/libc/locale/wcstoul.c,v 1.2 2001/09/21 16:11:41 yamt Exp
|
||||
* NetBSD: wcstoul.c,v 1.1 2001/09/27 16:30:37 yamt Exp
|
||||
*/
|
||||
|
||||
/*
|
||||
* function template for wcstoul, wcstoull and wcstoumax.
|
||||
*
|
||||
* parameters:
|
||||
* FUNCNAME : function name
|
||||
* uint_type : return type
|
||||
* MAX_VALUE : upper limit of the return type
|
||||
*/
|
||||
|
||||
uint_type
|
||||
FUNCNAME(const wchar_t *nptr, wchar_t **endptr, int base)
|
||||
{
|
||||
const wchar_t *s;
|
||||
uint_type acc, cutoff;
|
||||
wint_t wc;
|
||||
int i;
|
||||
int neg, any, cutlim;
|
||||
|
||||
if (base && (base < 2 || base > 36)) {
|
||||
errno = EINVAL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Skip white space and pick up leading +/- sign if any.
|
||||
* If base is 0, allow 0x for hex and 0 for octal, else
|
||||
* assume decimal; if base is already 16, allow 0x.
|
||||
*/
|
||||
s = nptr;
|
||||
do {
|
||||
wc = (wchar_t) *s++;
|
||||
} while (iswspace(wc));
|
||||
if (wc == L'-') {
|
||||
neg = 1;
|
||||
wc = *s++;
|
||||
} else {
|
||||
neg = 0;
|
||||
if (wc == L'+')
|
||||
wc = *s++;
|
||||
}
|
||||
if ((base == 0 || base == 16) &&
|
||||
wc == L'0' && (*s == L'x' || *s == L'X')) {
|
||||
wc = s[1];
|
||||
s += 2;
|
||||
base = 16;
|
||||
}
|
||||
if (base == 0)
|
||||
base = wc == L'0' ? 8 : 10;
|
||||
|
||||
/*
|
||||
* See strtoul for comments as to the logic used.
|
||||
*/
|
||||
cutoff = MAX_VALUE / (uint_type)base;
|
||||
cutlim = (int)(MAX_VALUE % (uint_type)base);
|
||||
for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
|
||||
i = wctoint(wc);
|
||||
if (i == (wint_t)-1)
|
||||
break;
|
||||
if (i >= base)
|
||||
break;
|
||||
if (any < 0)
|
||||
continue;
|
||||
if (acc > cutoff || (acc == cutoff && i > cutlim)) {
|
||||
any = -1;
|
||||
acc = MAX_VALUE;
|
||||
errno = ERANGE;
|
||||
} else {
|
||||
any = 1;
|
||||
acc *= (uint_type)base;
|
||||
acc += i;
|
||||
}
|
||||
}
|
||||
if (neg && any > 0)
|
||||
acc = -acc;
|
||||
if (endptr != 0)
|
||||
/* LINTED interface specification */
|
||||
*endptr = (wchar_t *)(any ? s - 1 : nptr);
|
||||
return (acc);
|
||||
}
|
52
libc/upstream-openbsd/lib/libc/locale/btowc.c
Normal file
52
libc/upstream-openbsd/lib/libc/locale/btowc.c
Normal file
@@ -0,0 +1,52 @@
|
||||
/* $OpenBSD: btowc.c,v 1.2 2012/12/05 23:20:00 deraadt Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2002, 2003 Tim J. Robbins.
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <wchar.h>
|
||||
|
||||
wint_t
|
||||
btowc(int c)
|
||||
{
|
||||
mbstate_t mbs;
|
||||
char cc;
|
||||
wchar_t wc;
|
||||
|
||||
if (c == EOF)
|
||||
return (WEOF);
|
||||
/*
|
||||
* We expect mbrtowc() to return 0 or 1, hence the check for n > 1
|
||||
* which detects error return values as well as "impossible" byte
|
||||
* counts.
|
||||
*/
|
||||
memset(&mbs, 0, sizeof(mbs));
|
||||
cc = (char)c;
|
||||
if (mbrtowc(&wc, &cc, 1, &mbs) > 1)
|
||||
return (WEOF);
|
||||
return (wc);
|
||||
}
|
39
libc/upstream-openbsd/lib/libc/locale/mbrlen.c
Normal file
39
libc/upstream-openbsd/lib/libc/locale/mbrlen.c
Normal file
@@ -0,0 +1,39 @@
|
||||
/* $OpenBSD: mbrlen.c,v 1.2 2012/12/05 23:20:00 deraadt Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2002-2004 Tim J. Robbins.
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
||||
*/
|
||||
|
||||
#include <wchar.h>
|
||||
|
||||
size_t
|
||||
mbrlen(const char * __restrict s, size_t n, mbstate_t * __restrict ps)
|
||||
{
|
||||
static mbstate_t mbs;
|
||||
|
||||
if (ps == NULL)
|
||||
ps = &mbs;
|
||||
return (mbrtowc(NULL, s, n, ps));
|
||||
}
|
44
libc/upstream-openbsd/lib/libc/locale/mbstowcs.c
Normal file
44
libc/upstream-openbsd/lib/libc/locale/mbstowcs.c
Normal file
@@ -0,0 +1,44 @@
|
||||
/* $OpenBSD: mbstowcs.c,v 1.2 2012/12/05 23:20:00 deraadt Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2002-2004 Tim J. Robbins.
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
||||
*/
|
||||
|
||||
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <wchar.h>
|
||||
|
||||
size_t
|
||||
mbstowcs(wchar_t * __restrict pwcs, const char * __restrict s, size_t n)
|
||||
{
|
||||
mbstate_t mbs;
|
||||
const char *sp;
|
||||
|
||||
memset(&mbs, 0, sizeof(mbs));
|
||||
sp = s;
|
||||
return (mbsrtowcs(pwcs, &sp, n, &mbs));
|
||||
}
|
13
libc/upstream-openbsd/lib/libc/locale/wcstod.c
Normal file
13
libc/upstream-openbsd/lib/libc/locale/wcstod.c
Normal file
@@ -0,0 +1,13 @@
|
||||
/* $OpenBSD: wcstod.c,v 1.3 2009/01/13 18:18:31 kettenis Exp $ */
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <wchar.h>
|
||||
#include <wctype.h>
|
||||
|
||||
#define FUNCNAME wcstod
|
||||
typedef double float_type;
|
||||
#define STRTOD_FUNC strtod
|
||||
|
||||
#include "_wcstod.h"
|
13
libc/upstream-openbsd/lib/libc/locale/wcstof.c
Normal file
13
libc/upstream-openbsd/lib/libc/locale/wcstof.c
Normal file
@@ -0,0 +1,13 @@
|
||||
/* $OpenBSD: wcstof.c,v 1.1 2009/01/13 18:18:31 kettenis Exp $ */
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <wchar.h>
|
||||
#include <wctype.h>
|
||||
|
||||
#define FUNCNAME wcstof
|
||||
typedef float float_type;
|
||||
#define STRTOD_FUNC strtof
|
||||
|
||||
#include "_wcstod.h"
|
18
libc/upstream-openbsd/lib/libc/locale/wcstol.c
Normal file
18
libc/upstream-openbsd/lib/libc/locale/wcstol.c
Normal file
@@ -0,0 +1,18 @@
|
||||
/* $OpenBSD: wcstol.c,v 1.2 2005/08/08 08:05:35 espie Exp $ */
|
||||
/* $NetBSD: wcstol.c,v 1.2 2003/03/11 09:21:23 tshiozak Exp $ */
|
||||
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
#include <wchar.h>
|
||||
#include <wctype.h>
|
||||
|
||||
#include "wctoint.h"
|
||||
|
||||
#define FUNCNAME wcstol
|
||||
typedef long int_type;
|
||||
#define MIN_VALUE LONG_MIN
|
||||
#define MAX_VALUE LONG_MAX
|
||||
|
||||
#include "_wcstol.h"
|
13
libc/upstream-openbsd/lib/libc/locale/wcstold.c
Normal file
13
libc/upstream-openbsd/lib/libc/locale/wcstold.c
Normal file
@@ -0,0 +1,13 @@
|
||||
/* $OpenBSD: wcstold.c,v 1.1 2009/01/13 18:18:31 kettenis Exp $ */
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <wchar.h>
|
||||
#include <wctype.h>
|
||||
|
||||
#define FUNCNAME wcstold
|
||||
typedef long double float_type;
|
||||
#define STRTOD_FUNC strtold
|
||||
|
||||
#include "_wcstod.h"
|
18
libc/upstream-openbsd/lib/libc/locale/wcstoll.c
Normal file
18
libc/upstream-openbsd/lib/libc/locale/wcstoll.c
Normal file
@@ -0,0 +1,18 @@
|
||||
/* $OpenBSD: wcstoll.c,v 1.2 2005/08/08 08:05:35 espie Exp $ */
|
||||
/* $NetBSD: wcstoll.c,v 1.1 2003/03/11 09:21:23 tshiozak Exp $ */
|
||||
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
#include <wchar.h>
|
||||
#include <wctype.h>
|
||||
|
||||
#include "wctoint.h"
|
||||
|
||||
#define FUNCNAME wcstoll
|
||||
typedef long long int int_type;
|
||||
#define MIN_VALUE LLONG_MIN
|
||||
#define MAX_VALUE LLONG_MAX
|
||||
|
||||
#include "_wcstol.h"
|
43
libc/upstream-openbsd/lib/libc/locale/wcstombs.c
Normal file
43
libc/upstream-openbsd/lib/libc/locale/wcstombs.c
Normal file
@@ -0,0 +1,43 @@
|
||||
/* $OpenBSD: wcstombs.c,v 1.2 2012/12/05 23:20:00 deraadt Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2002-2004 Tim J. Robbins.
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
||||
*/
|
||||
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <wchar.h>
|
||||
|
||||
size_t
|
||||
wcstombs(char * __restrict s, const wchar_t * __restrict pwcs, size_t n)
|
||||
{
|
||||
mbstate_t mbs;
|
||||
const wchar_t *pwcsp;
|
||||
|
||||
memset(&mbs, 0, sizeof(mbs));
|
||||
pwcsp = pwcs;
|
||||
return (wcsrtombs(s, &pwcsp, n, &mbs));
|
||||
}
|
17
libc/upstream-openbsd/lib/libc/locale/wcstoul.c
Normal file
17
libc/upstream-openbsd/lib/libc/locale/wcstoul.c
Normal file
@@ -0,0 +1,17 @@
|
||||
/* $OpenBSD: wcstoul.c,v 1.2 2005/08/08 08:05:35 espie Exp $ */
|
||||
/* $NetBSD: wcstoul.c,v 1.2 2003/03/11 09:21:24 tshiozak Exp $ */
|
||||
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
#include <wchar.h>
|
||||
#include <wctype.h>
|
||||
|
||||
#include "wctoint.h"
|
||||
|
||||
#define FUNCNAME wcstoul
|
||||
typedef unsigned long uint_type;
|
||||
#define MAX_VALUE ULONG_MAX
|
||||
|
||||
#include "_wcstoul.h"
|
17
libc/upstream-openbsd/lib/libc/locale/wcstoull.c
Normal file
17
libc/upstream-openbsd/lib/libc/locale/wcstoull.c
Normal file
@@ -0,0 +1,17 @@
|
||||
/* $OpenBSD: wcstoull.c,v 1.2 2005/08/08 08:05:35 espie Exp $ */
|
||||
/* $NetBSD: wcstoull.c,v 1.1 2003/03/11 09:21:24 tshiozak Exp $ */
|
||||
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
#include <wchar.h>
|
||||
#include <wctype.h>
|
||||
|
||||
#include "wctoint.h"
|
||||
|
||||
#define FUNCNAME wcstoull
|
||||
typedef unsigned long long int uint_type;
|
||||
#define MAX_VALUE ULLONG_MAX
|
||||
|
||||
#include "_wcstoul.h"
|
43
libc/upstream-openbsd/lib/libc/locale/wctob.c
Normal file
43
libc/upstream-openbsd/lib/libc/locale/wctob.c
Normal file
@@ -0,0 +1,43 @@
|
||||
/* $OpenBSD: wctob.c,v 1.2 2012/12/05 23:20:00 deraadt Exp $ */
|
||||
/*-
|
||||
* Copyright (c) 2002-2004 Tim J. Robbins.
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
||||
*/
|
||||
|
||||
#include <limits.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <wchar.h>
|
||||
|
||||
int
|
||||
wctob(wint_t c)
|
||||
{
|
||||
mbstate_t mbs;
|
||||
char buf[MB_LEN_MAX];
|
||||
|
||||
memset(&mbs, 0, sizeof(mbs));
|
||||
if (c == WEOF || wcrtomb(buf, c, &mbs) != 1)
|
||||
return (EOF);
|
||||
return ((unsigned char)*buf);
|
||||
}
|
79
libc/upstream-openbsd/lib/libc/locale/wctoint.h
Normal file
79
libc/upstream-openbsd/lib/libc/locale/wctoint.h
Normal file
@@ -0,0 +1,79 @@
|
||||
/* $OpenBSD: wctoint.h,v 1.1 2005/07/01 08:59:27 espie Exp $ */
|
||||
/* $NetBSD: __wctoint.h,v 1.1 2001/09/28 11:25:37 yamt Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c)2001 Citrus Project,
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
||||
*
|
||||
* $Citrus: xpg4dl/FreeBSD/lib/libc/locale/__wctoint.h,v 1.1 2001/09/21 13:52:32 yamt Exp $
|
||||
*/
|
||||
|
||||
|
||||
__inline static int
|
||||
wctoint(wchar_t wc)
|
||||
{
|
||||
int n;
|
||||
|
||||
switch (wc) {
|
||||
case L'0': n = 0; break;
|
||||
case L'1': n = 1; break;
|
||||
case L'2': n = 2; break;
|
||||
case L'3': n = 3; break;
|
||||
case L'4': n = 4; break;
|
||||
case L'5': n = 5; break;
|
||||
case L'6': n = 6; break;
|
||||
case L'7': n = 7; break;
|
||||
case L'8': n = 8; break;
|
||||
case L'9': n = 9; break;
|
||||
case L'A': case L'a': n = 10; break;
|
||||
case L'B': case L'b': n = 11; break;
|
||||
case L'C': case L'c': n = 12; break;
|
||||
case L'D': case L'd': n = 13; break;
|
||||
case L'E': case L'e': n = 14; break;
|
||||
case L'F': case L'f': n = 15; break;
|
||||
case L'G': case L'g': n = 16; break;
|
||||
case L'H': case L'h': n = 17; break;
|
||||
case L'I': case L'i': n = 18; break;
|
||||
case L'J': case L'j': n = 19; break;
|
||||
case L'K': case L'k': n = 20; break;
|
||||
case L'L': case L'l': n = 21; break;
|
||||
case L'M': case L'm': n = 22; break;
|
||||
case L'N': case L'n': n = 23; break;
|
||||
case L'O': case L'o': n = 24; break;
|
||||
case L'P': case L'p': n = 25; break;
|
||||
case L'Q': case L'q': n = 26; break;
|
||||
case L'R': case L'r': n = 27; break;
|
||||
case L'S': case L's': n = 28; break;
|
||||
case L'T': case L't': n = 29; break;
|
||||
case L'U': case L'u': n = 30; break;
|
||||
case L'V': case L'v': n = 31; break;
|
||||
case L'W': case L'w': n = 32; break;
|
||||
case L'X': case L'x': n = 33; break;
|
||||
case L'Y': case L'y': n = 34; break;
|
||||
case L'Z': case L'z': n = 35; break;
|
||||
default: n = -1; break; /* error */
|
||||
}
|
||||
|
||||
return n;
|
||||
}
|
Reference in New Issue
Block a user