Files
shadow/lib/string/memset/memzero.c
Alejandro Colomar 87a5145719 lib/: Move memzero.[ch] under lib/string/memset/
Signed-off-by: Alejandro Colomar <alx@kernel.org>
2024-08-30 21:44:07 -05:00

16 lines
294 B
C

// SPDX-FileCopyrightText: 2023, Alejandro Colomar <alx@kernel.org>
// SPDX-License-Identifier: BSD-3-Clause
#include <config.h>
#ident "$Id$"
#include <stddef.h>
#include "string/memset/memzero.h"
extern inline void memzero(void *ptr, size_t size);
extern inline void strzero(char *s);