aboutsummaryrefslogtreecommitdiffstats
path: root/src/mem/memrchr.c
blob: 1799d27dc76ed3e4078a9f452242757e7421279a (plain) (blame)
1
2
3
4
5
6
7
8
9
/*
 * Copyright (c) 2023 Marc Pervaz Boocha
 *
 * SPDX-License-Identifier: MIT
 */

#include <mem.h>

extern inline void *calt_memrchr(void const *ptr, unsigned char value, size_t count);