diff options
| author | manuel <manuel@mausz.at> | 2013-02-04 00:08:53 +0100 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2013-02-04 00:08:53 +0100 |
| commit | 69aec538b456402170dc723af417ba5c05389c32 (patch) | |
| tree | e6f34c543f17c6392447ea337b2e2868212424d1 /scan_8long.c | |
| download | qmail-69aec538b456402170dc723af417ba5c05389c32.tar.gz qmail-69aec538b456402170dc723af417ba5c05389c32.tar.bz2 qmail-69aec538b456402170dc723af417ba5c05389c32.zip | |
qmail 1.03 import
Diffstat (limited to 'scan_8long.c')
| -rw-r--r-- | scan_8long.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scan_8long.c b/scan_8long.c new file mode 100644 index 0000000..8b3a6df --- /dev/null +++ b/scan_8long.c | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | #include "scan.h" | ||
| 2 | |||
| 3 | unsigned int scan_8long(s,u) register char *s; register unsigned long *u; | ||
| 4 | { | ||
| 5 | register unsigned int pos; register unsigned long result; | ||
| 6 | register unsigned long c; | ||
| 7 | pos = 0; result = 0; | ||
| 8 | while ((c = (unsigned long) (unsigned char) (s[pos] - '0')) < 8) | ||
| 9 | { result = result * 8 + c; ++pos; } | ||
| 10 | *u = result; return pos; | ||
| 11 | } | ||
