mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-11 19:25:43 +00:00
13 lines
189 B
C
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);
|