blob: ccd471340ea46402c41638ffff3e457d2390eeba [file] [log] [blame]
Elliott Hughes01ae00f2014-04-29 16:28:56 -07001/* $OpenBSD: wcstoumax.c,v 1.1 2009/01/13 18:13:51 kettenis Exp $ */
2/* $NetBSD: wcstoul.c,v 1.2 2003/03/11 09:21:24 tshiozak Exp $ */
3
4#include <ctype.h>
5#include <errno.h>
6#include <inttypes.h>
7#include <stdint.h>
8#include <stdlib.h>
9#include <wchar.h>
10#include <wctype.h>
11
12#include "wctoint.h"
13
14#define FUNCNAME wcstoumax
15typedef uintmax_t uint_type;
16#define MAX_VALUE UINTMAX_MAX
17
18#include "_wcstoul.h"