2003-03-11 12:21:22 +03:00
|
|
|
/* $NetBSD: wcstoul.c,v 1.2 2003/03/11 09:21:24 tshiozak Exp $ */
|
2001-09-27 20:30:35 +04:00
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
2003-03-11 12:21:22 +03:00
|
|
|
__RCSID("$NetBSD: wcstoul.c,v 1.2 2003/03/11 09:21:24 tshiozak Exp $");
|
2001-09-27 20:30:35 +04:00
|
|
|
#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"
|
|
|
|
|
2003-03-11 12:21:22 +03:00
|
|
|
#define _FUNCNAME wcstoul
|
|
|
|
#define __UINT unsigned long
|
|
|
|
#define __UINT_MAX ULONG_MAX
|
2001-09-27 20:30:35 +04:00
|
|
|
|
2003-03-11 12:21:22 +03:00
|
|
|
#include "_wcstoul.h"
|