You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
453 B
17 lines
453 B
9 years ago
|
#include "byte.h"
|
||
|
|
||
|
int byte_diff(s,n,t)
|
||
|
register char *s;
|
||
|
register unsigned int n;
|
||
|
register char *t;
|
||
|
{
|
||
|
for (;;) {
|
||
|
if (!n) return 0; if (*s != *t) break; ++s; ++t; --n;
|
||
|
if (!n) return 0; if (*s != *t) break; ++s; ++t; --n;
|
||
|
if (!n) return 0; if (*s != *t) break; ++s; ++t; --n;
|
||
|
if (!n) return 0; if (*s != *t) break; ++s; ++t; --n;
|
||
|
}
|
||
|
return ((int)(unsigned int)(unsigned char) *s)
|
||
|
- ((int)(unsigned int)(unsigned char) *t);
|
||
|
}
|