2 * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3 * See the copyright notice in the ACK home directory, in the file "Copyright".
10 strstr(register const char *s
, register const char *wanted
)
12 register const size_t len
= strlen(wanted
);
14 if (len
== 0) return (char *)s
;
15 while (*s
!= *wanted
|| strncmp(s
, wanted
, len
))