blob: 71bd48d514eb8e442a4e9bc0b8ec86d1a4ce4921 [file]
#include "str.h"
int str_diffn(const char *s,const char *t,unsigned int len)
{
char x;
for (;;) {
if (!len--) return 0; x = *s; if (x != *t) break; if (!x) break; ++s; ++t;
if (!len--) return 0; x = *s; if (x != *t) break; if (!x) break; ++s; ++t;
if (!len--) return 0; x = *s; if (x != *t) break; if (!x) break; ++s; ++t;
if (!len--) return 0; x = *s; if (x != *t) break; if (!x) break; ++s; ++t;
}
return ((int)(unsigned int)(unsigned char) x)
- ((int)(unsigned int)(unsigned char) *t);
}