Files
shadow/lib/string/strcmp/strneq.c
2026-01-06 00:37:15 +01:00

14 lines
283 B
C

// SPDX-FileCopyrightText: 2025, Alejandro Colomar <alx@kernel.org>
// SPDX-License-Identifier: BSD-3-Clause
#include "config.h"
#include "string/strcmp/strneq.h"
#include <stdbool.h>
#include <stddef.h>
extern inline bool strneq(const char *strn, const char *s, size_t size);