blob: f71c53427fe80165760bf21ac07f516520e0a306 [file] [log] [blame]
#include "mystuff.h"
unsigned int skip_atou(const char **s)
{
int i=0;
while (isdigit(**s))
i = i*10 + *((*s)++) - '0';
return i;
}