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

#include <mem.h>

extern inline void *calt_memmem(void const *haystack, size_t haystacklen,
			      void const *needle, size_t needlelen);