blob: d34940cf9d9dcc487fdbdcdfebb1af286d1d960b (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
#define RET_MAX 9223372036854775807LL
#define RET_MIN (-RET_MAX - 1LL)
int_least32_t
libsimple_strtoi32(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_least32_t)r;
}
#else
#include "test.h"
int
main(void)
{
return 0;
}
#endif
|