summaryrefslogtreecommitdiff
path: root/scan_ulong.c
blob: 27c41ea5b029a634300f396d74882cca50153f75 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "scan.h"

unsigned int scan_ulong(s,u) register char *s; register unsigned long *u;
{
  register unsigned int pos; register unsigned long result;
  register unsigned long c;
  pos = 0; result = 0;
  while ((c = (unsigned long) (unsigned char) (s[pos] - '0')) < 10)
    { result = result * 10 + c; ++pos; }
  *u = result; return pos;
}