mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-29 19:04:20 +00:00
12 lines
248 B
C
12 lines
248 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef MUON_MEMMEM_H
|
|
#define MUON_MEMMEM_H
|
|
#include <stddef.h>
|
|
|
|
void *memmem(const void *h0, size_t k, const void *n0, size_t l);
|
|
#endif
|