Files
2010-07-27 16:58:17 +00:00

13 lines
189 B
C

#include <string.h>
#include "stabs.h"
char *strchr(const char *s,int c)
{
while (*s!=(char)c)
if (!*s++)
{ s = (char *)0; break; }
return (char *)s;
}
ALIAS(index,strchr);