15 lines
370 B
C
15 lines
370 B
C
/* Public domain. */
|
|
|
|
#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;
|
|
}
|
|
}
|