Files
shadow/lib/string/strchr/strchrcnt.c
Alejandro Colomar 9efce1ac85 lib/string/strchr/: strchrcnt(): Add function
Signed-off-by: Alejandro Colomar <alx@kernel.org>
2024-11-10 23:07:19 -06:00

13 lines
247 B
C

// SPDX-FileCopyrightText: 2024, Alejandro Colomar <alx@kernel.org>
// SPDX-License-Identifier: BSD-3-Clause
#include <config.h>
#include "string/strchr/strchrcnt.h"
#include <stddef.h>
extern inline size_t strchrcnt(const char *s, char c);