Files

17 lines
173 B
C
Raw Permalink Normal View History

2026-03-25 20:21:28 +00:00
#include <stddef.h>
char *strchr(const char *str, int c)
{
while (1) {
if (*str == c) {
return (char *)str;
}
if (*str == 0) {
break;
}
}
return NULL;
}