Home | History | Annotate | Line # | Download | only in locale
wcstoull.c revision 1.1
      1 /*	$NetBSD: wcstoull.c,v 1.1 2003/03/11 09:21:24 tshiozak Exp $	*/
      2 
      3 #include <sys/cdefs.h>
      4 #if defined(LIBC_SCCS) && !defined(lint)
      5 __RCSID("$NetBSD: wcstoull.c,v 1.1 2003/03/11 09:21:24 tshiozak Exp $");
      6 #endif /* LIBC_SCCS and not lint */
      7 
      8 #include <assert.h>
      9 #include <ctype.h>
     10 #include <errno.h>
     11 #include <limits.h>
     12 #include <stdlib.h>
     13 #include <wchar.h>
     14 #include <wctype.h>
     15 
     16 #include "__wctoint.h"
     17 
     18 #define	_FUNCNAME	wcstoull
     19 #define	__UINT		/* LONGLONG */ unsigned long long int
     20 #define	__UINT_MAX	ULLONG_MAX
     21 
     22 #include "_wcstoul.h"
     23