• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "mystuff.h"
2 
skip_atou(const char ** s)3 unsigned 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 }
11