interpret/src/helper.h

25 lines
621 B
C
Raw Normal View History

2022-12-29 07:54:59 +00:00
#include <errno.h>
#include <stdint.h>
2023-02-01 08:58:51 +00:00
/** `printf`-compatible substring. */
struct substring { const char *sub; int size; };
2022-12-29 07:54:59 +00:00
/** Parse unsigned; [`s`,`e`) => `n`. */
static int helper_natural(const char *s, const char *const e, uint32_t *const n)
{
uint32_t accum = 0;
while(s < e) {
unsigned next = accum * 10 + (unsigned)(*s - '0');
if(accum >= next) return errno = ERANGE, 0;
accum = next;
s++;
}
*n = accum;
return 1;
}
2023-02-03 02:53:59 +00:00
static void unused_helper_coda(void);
static void unused_helper(void)
{ helper_natural(0, 0, 0); unused_helper_coda(); }
static void unused_helper_coda(void) { unused_helper(); }