aboutsummaryrefslogtreecommitdiffstats
path: root/memory/strrchr.c
blob: 96a04eb66ad00a43a3bcabdbacd25e903b426914 (plain) (blame)
1
2
3
4
5
6
#include "memory.h"

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