aboutsummaryrefslogblamecommitdiffstats
path: root/strtou8.c
blob: 1721d859cc541d4ea7ab2ac34aa7c7bfa1429fec (plain) (tree)
1
2
                                                         
                   


























                                                                                                
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST

#define RET_MAX 255ULL


uint_least8_t
libsimple_strtou8(const char *restrict nptr, char **restrict end, int base) /* TODO test, man */
{
	uintmax_t r = strtoumax(nptr, end, base);
	if(r > RET_MAX) {
		r = RET_MAX;
		errno = ERANGE;
	}
	return (uint_least8_t)r;
}


#else
#include "test.h"

int
main(void)
{
	return 0;
}

#endif