blob: 655ab565273c84bdb908cce62eed3783249199bd [file] [log] [blame]
Greg Hartman76d05dc2016-11-23 15:51:27 -08001#include "mystuff.h"
2
3unsigned int skip_atou(const char **s)
4{
5 int i = 0;
6
7 while (isdigit(**s))
8 i = i * 10 + *((*s)++) - '0';
9 return i;
10}