2023-11-16 23:19:36 -05:00

11 lines
151 B
C

#include "mystuff.h"
unsigned int skip_atou(const char **s)
{
int i = 0;
while (isdigit(**s))
i = i * 10 + *((*s)++) - '0';
return i;
}