summaryrefslogtreecommitdiff
path: root/src/inttypes/wcstoimax.c
blob: d49bf6639abd8062880d18008db377b9c43ae07f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <stddef.h>
#include <errno.h>
#include <inttypes.h>
#include <wctype.h>
#include "_safety.h"

#define isspace iswspace

intmax_t wcstoimax(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)
{
	SIGNAL_SAFE(0);

	intmax_t ret = 0;
	intmax_t max = INTMAX_MAX;
	intmax_t min = INTMAX_MIN;

	#include "stdlib/_strtoi.h"

	return ret;
}

__check_3(intmax_t, 0, wcstoimax, const wchar_t * restrict, wchar_t **restrict, int)

/*
STDC(199901)
*/