Home | History | Annotate | Download | only in Locale
      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: wcstoull.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: wcstoull.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 <limits.h>
     47 #include <stdlib.h>
     48 #include <wchar.h>
     49 #include <wctype.h>
     50 
     51 #include "__wctoint.h"
     52 
     53 #define _FUNCNAME wcstoull
     54 #define __wINT      long long int
     55 #define __wUINT    /* LONGLONG */ unsigned long long int
     56 #define __wUINT_MAX  ULLONG_MAX
     57 
     58 #include "_wcstoul.h"
     59