Permalink
Cannot retrieve contributors at this time
Fetching contributors…

#include "str.h" | |
int str_start(register const char *s,register const char *t) | |
{ | |
register char x; | |
for (;;) { | |
x = *t++; if (!x) return 1; if (x != *s++) return 0; | |
x = *t++; if (!x) return 1; if (x != *s++) return 0; | |
x = *t++; if (!x) return 1; if (x != *s++) return 0; | |
x = *t++; if (!x) return 1; if (x != *s++) return 0; | |
} | |
} |