]>
git.proxmox.com Git - mirror_edk2.git/blob - StdLib/LibC/Locale/_wcstoul.h
2 Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
3 This program and the accompanying materials
4 are licensed and made available under the terms and conditions of the BSD License
5 which accompanies this distribution. The full text of the license may be found at
6 http://opensource.org/licenses/bsd-license.php
8 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
9 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 Copyright (c) 1990, 1993
12 The Regents of the University of California. All rights reserved.
14 Redistribution and use in source and binary forms, with or without
15 modification, are permitted provided that the following conditions
17 1. Redistributions of source code must retain the above copyright
18 notice, this list of conditions and the following disclaimer.
19 2. Redistributions in binary form must reproduce the above copyright
20 notice, this list of conditions and the following disclaimer in the
21 documentation and/or other materials provided with the distribution.
22 3. Neither the name of the University nor the names of its contributors
23 may be used to endorse or promote products derived from this software
24 without specific prior written permission.
26 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 @(#)strtoul.c 8.1 (Berkeley) 6/4/93
40 Citrus: xpg4dl/FreeBSD/lib/libc/locale/wcstoul.c,v 1.2 2001/09/21 16:11:41 yamt Exp
41 NetBSD: wcstoul.c,v 1.1 2001/09/27 16:30:37 yamt Exp
42 NetBSD: _wcstoul.h,v 1.3 2005/11/29 03:11:59 christos Exp
45 #include <Library/BaseLib.h>
48 * function template for wcstoul, wcstoull and wcstoumax.
51 * _FUNCNAME : function name
52 * __wUINT : return type
53 * __wINT : signed version of __wUINT
54 * __wUINT_MAX : upper limit of the return type
70 _DIAGASSERT(nptr
!= NULL
);
71 /* endptr may be NULL */
73 if (base
&& (base
< 2 || base
> 36)) {
79 * Skip white space and pick up leading +/- sign if any.
80 * If base is 0, allow 0x for hex and 0 for octal, else
81 * assume decimal; if base is already 16, allow 0x.
86 } while (iswspace(wc
));
95 if ((base
== 0 || base
== 16) &&
96 wc
== L
'0' && (*s
== L
'x' || *s
== L
'X')) {
102 base
= wc
== L
'0' ? 8 : 10;
105 * See strtoul for comments as to the logic used.
107 cutoff
= (__wUINT
)DivU64x32 ((UINT64
) __wUINT_MAX
, (UINT32
) base
);
108 cutlim
= (int) ModU64x32 ((UINT64
) __wUINT_MAX
, (UINT32
) base
);
109 for (acc
= 0, any
= 0;; wc
= (wint_t) *s
++) {
110 i
= __wctoint((wchar_t)wc
);
118 if (acc
> cutoff
|| (acc
== cutoff
&& i
> cutlim
)) {
124 acc
*= (__wUINT
)base
;
129 acc
= (__wUINT
)(-((__wINT
)acc
));
131 *endptr
= __UNCONST(any
? s
- 1 : nptr
);