aboutsummaryrefslogtreecommitdiffstats
path: root/strtoi16.c
blob: 3d8cb4494b1f5fe9b8fd9ac5fb7151a3b345cfe7 (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
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST

#define RET_MAX 32767LL
#define RET_MIN (-RET_MAX - 1LL)


int_least16_t
libsimple_strtoi16(const char *restrict nptr, char **restrict end, int base) /* TODO test, man */
{
	intmax_t r = strtoimax(nptr, end, base);
	if(r < RET_MIN) {
		r = RET_MIN;
		errno = ERANGE;
	} else if(r > RET_MAX) {
		r = RET_MAX;
		errno = ERANGE;
	}
	return (int_least16_t)r;
}


#else
#include "test.h"

int
main(void)
{
	return 0;
}

#endif