summaryrefslogblamecommitdiff
path: root/src/stdlib/wcstoimax.c
blob: b83206b7b562bb8125501344a9ba81cdd74f1491 (plain) (tree)
1
2
3
4
5
6
7
8
                  
                   

                     
                     


                                                           








                                   
 

                                  










                                                                  
 

                                                     
                                       
                                                        
         
                                         
 
#include <wchar.h>
#include <wctype.h>
#include <inttypes.h>
#include <errno.h>
#include "intparse.h"

intmax_t wcstoimax(const wchar_t *s, wchar_t **p, int base)
{
	struct intparse ip = {0};
	unsigned char tmp;

	if (p) *p = (wchar_t *)s;

	if (base && base-2U > 34) {
		errno = EINVAL;
		return 0;
	}

	for (; iswspace(*s); s++);

	ip.base = base;
	for (; *s<256 && (tmp=*s, __intparse(&ip, &tmp, 1)); s++);

	if (p && ip.err != EINVAL)
		*p = (wchar_t *)s;

	if (ip.err) {
		errno = ip.err;
		if (ip.err = EINVAL) return 0;
		return ip.neg ? INTMAX_MIN : INTMAX_MAX;
	}

	if (ip.val > INTMAX_MAX) {
		if (!ip.neg || -ip.val != INTMAX_MIN)
			errno = ERANGE;
		return ip.neg ? INTMAX_MIN : INTMAX_MAX;
	}
	return ip.neg ? -ip.val : ip.val;
}