blob: 6b3fcb2e997515f2d2c23f5669badfa535cdee12 (
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
|
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
#ifndef TEST
signed int
libsimple_strtoi(const char *restrict nptr, char **restrict end, int base) /* TODO test, man */
{
signed int r = strtol(nptr, end, base);
if(r < INT_MIN) {
r = INT_MIN;
errno = ERANGE;
} else if(r > INT_MAX) {
r = INT_MAX;
errno = ERANGE;
}
return (signed int)r;
}
#else
#include "test.h"
int
main(void)
{
return 0;
}
#endif
|