summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/strcmp.c
blob: 0db324e66b918289d34eb6a3d83dff85c8e74684 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "dietfeatures.h"

int strcmp(register const char *s,register const char *t) {
  register char x;

  for (;;) {
    x = *s; if (x != *t) break; if (!x) break; ++s; ++t;
#ifndef WANT_SMALL_STRING_ROUTINES
    x = *s; if (x != *t) break; if (!x) break; ++s; ++t;
    x = *s; if (x != *t) break; if (!x) break; ++s; ++t;
    x = *s; if (x != *t) break; if (!x) break; ++s; ++t;
#endif
  }
  return ((int)(unsigned int)(unsigned char) x)
       - ((int)(unsigned int)(unsigned char) *t);
}