1 /* $OpenBSD: wcstoul.c,v 1.2 2005/08/08 08:05:35 espie 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 <limits.h> 7 #include <stdlib.h> 8 #include <wchar.h> 9 #include <wctype.h> 10 11 #include "wctoint.h" 12 13 #define FUNCNAME wcstoul 14 typedef unsigned long uint_type; 15 #define MAX_VALUE ULONG_MAX 16 17 #include "_wcstoul.h" 18