1 | /** @file
|
---|
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
|
---|
7 |
|
---|
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.
|
---|
10 |
|
---|
11 | Copyright (c)2003 Citrus Project,
|
---|
12 | All rights reserved.
|
---|
13 |
|
---|
14 | Redistribution and use in source and binary forms, with or without
|
---|
15 | modification, are permitted provided that the following conditions
|
---|
16 | are met:
|
---|
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 |
|
---|
23 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
---|
24 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
---|
25 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
---|
26 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
---|
27 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
---|
28 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
---|
29 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
---|
30 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
---|
31 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
---|
32 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
---|
33 | SUCH DAMAGE.
|
---|
34 |
|
---|
35 | NetBSD: wcstoumax.c,v 1.2 2004/06/21 21:20:43 itojun Exp
|
---|
36 | */
|
---|
37 | #include <LibConfig.h>
|
---|
38 | #include <sys/EfiCdefs.h>
|
---|
39 | #if defined(LIBC_SCCS) && !defined(lint)
|
---|
40 | __RCSID("$NetBSD: wcstoumax.c,v 1.2 2004/06/21 21:20:43 itojun Exp $");
|
---|
41 | #endif /* LIBC_SCCS and not lint */
|
---|
42 |
|
---|
43 | #include <assert.h>
|
---|
44 | #include <ctype.h>
|
---|
45 | #include <errno.h>
|
---|
46 | #include <inttypes.h>
|
---|
47 | #include <limits.h>
|
---|
48 | #include <stdlib.h>
|
---|
49 | #include <wchar.h>
|
---|
50 | #include <wctype.h>
|
---|
51 |
|
---|
52 | #include "__wctoint.h"
|
---|
53 |
|
---|
54 | #define _FUNCNAME wcstoumax
|
---|
55 | #define __wINT intmax_t
|
---|
56 | #define __wUINT uintmax_t
|
---|
57 | #define __wUINT_MAX UINTMAX_MAX
|
---|
58 |
|
---|
59 | #include "_wcstoul.h"
|
---|