aboutsummaryrefslogtreecommitdiffstats
path: root/memory/strchr.c
blob: 4638c889752e77079bf9ecb7d9c99d270e6c20e0 (plain) (blame)
1
2
3
4
5
6
#include "memory.h"

char *strchr(char const *buffer, int value)
{
	return memchr(buffer, value, strlen(buffer) + 1);
}