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