#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); }