23 lines
538 B
C
23 lines
538 B
C
/* $NetBSD: wcstoull.c,v 1.1 2003/03/11 09:21:24 tshiozak Exp $ */
|
|
|
|
#include <sys/cdefs.h>
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
|
__RCSID("$NetBSD: wcstoull.c,v 1.1 2003/03/11 09:21:24 tshiozak Exp $");
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
#include <errno.h>
|
|
#include <limits.h>
|
|
#include <stdlib.h>
|
|
#include <wchar.h>
|
|
#include <wctype.h>
|
|
|
|
#include "__wctoint.h"
|
|
|
|
#define _FUNCNAME wcstoull
|
|
#define __UINT /* LONGLONG */ unsigned long long int
|
|
#define __UINT_MAX ULLONG_MAX
|
|
|
|
#include "_wcstoul.h"
|