Codebase list fastforward / a7fdf6ec-4c6f-47aa-b543-a23999a99349/main str_diffn.c
a7fdf6ec-4c6f-47aa-b543-a23999a99349/main

Tree @a7fdf6ec-4c6f-47aa-b543-a23999a99349/main (Download .tar.gz)

str_diffn.c @a7fdf6ec-4c6f-47aa-b543-a23999a99349/mainraw · history · blame

#include "str.h"

int str_diffn(s,t,len)
register char *s;
register char *t;
unsigned int len;
{
  register 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);
}