// SPDX-FileCopyrightText: 2023-2024, Alejandro Colomar // SPDX-License-Identifier: BSD-3-Clause #include #include "string/sprintf/snprintf.h" #include #include extern inline int snprintf_(char *restrict s, size_t size, const char *restrict fmt, ...); extern inline int vsnprintf_(char *restrict s, size_t size, const char *restrict fmt, va_list ap);