1 extern unsigned long int strtoul (__const char *__restrict __nptr,       char **__restrict __endptr, int __base);
find_reloads(int i,char * p)2 int find_reloads (int i, char *p)
3 {
4   int c;
5   while ((c = *p++))
6     return strtoul (p - 1, &p, 10);
7   return 0;
8 }
9