libowfat/str/str_diffn.c

26 lines
992 B
C
Raw Normal View History

2001-02-02 17:54:47 +00:00
#include "byte.h"
/* str_diff returns negative, 0, or positive, depending on whether the
* string a[0], a[1], ..., a[n]=='\0' is lexicographically smaller than,
* equal to, or greater than the string b[0], b[1], ..., b[m-1]=='\0'.
* When the strings are different, str_diff does not read bytes past the
* first difference. */
2006-11-07 17:56:05 +00:00
int str_diffn(const char* a, const char* b, size_t limit) {
register const unsigned char* s=(const unsigned char*)a;
register const unsigned char* t=(const unsigned char*)b;
register const unsigned char* u=t+limit;
2001-02-02 17:54:47 +00:00
register int j;
j=0;
for (;;) {
2016-04-27 14:07:49 +00:00
if (t>=u || (j=(*s-*t)) || !*t) break;
++s; ++t;
if (t>=u || (j=(*s-*t)) || !*t) break;
++s; ++t;
if (t>=u || (j=(*s-*t)) || !*t) break;
++s; ++t;
if (t>=u || (j=(*s-*t)) || !*t) break;
++s; ++t;
2001-02-02 17:54:47 +00:00
}
return j;
}