wcstoimax.c\stdlib\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/stdlib/wcstoimax.c
blob: 344fe3a3232e939eacdce33a4abb7db018f216a8 (plain) (blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
#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)
{
	const wchar_t *s1 = s;
	struct intparse ip = {0};
	if (p) *p = (wchar_t *)s;
	if (base && base-2U > 34) {
		errno = EINVAL;
		return 0;
	}
	for (; iswspace(*s); s++);
	ip.base = base;
	for (; __intparse(&ip, (char[]){(*s&-(*s<128U))}, 1); s++);
	if (p && ip.err != EINVAL)
		*p = (wchar_t *)s1 + ip.cnt;
	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;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月09日 08:31:13 +0000

AltStyle によって変換されたページ (->オリジナル) /