2023-11-16 23:19:36 -05:00

18 lines
192 B
C

/*
* strchr.c
*/
#include <string.h>
#include "mystuff.h"
char *strchr(const char *s, int c)
{
while (*s != (char)c) {
if (!*s)
return NULL;
s++;
}
return (char *)s;
}