From 5d2bbca39c79dcc73060ac480a4e229affef0a14 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 10 Jun 2022 19:34:11 +0200 Subject: Add strto[u]{hh,h,z}, strto{i,u}{,8,16,32,64} MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- strtou.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 strtou.c (limited to 'strtou.c') diff --git a/strtou.c b/strtou.c new file mode 100644 index 0000000..4201c1f --- /dev/null +++ b/strtou.c @@ -0,0 +1,27 @@ +/* See LICENSE file for copyright and license details. */ +#include "libsimple.h" +#ifndef TEST + + +unsigned int +libsimple_strtou(const char *restrict nptr, char **restrict end, int base) /* TODO test, man */ +{ + signed long int r = strtoul(nptr, end, base); + if(r > UINT_MAX) { + r = UINT_MAX; + errno = ERANGE; + } + return (unsigned int)r; +} + + +#else +#include "test.h" + +int +main(void) +{ + return 0; +} + +#endif -- cgit v1.2.3-70-g09d2