lib/: Move memzero.[ch] under lib/string/memset/

Signed-off-by: Alejandro Colomar <alx@kernel.org>
This commit is contained in:
Alejandro Colomar
2024-08-12 01:53:45 +02:00
committed by Serge Hallyn
parent 5c0b99c77e
commit 87a5145719
24 changed files with 35 additions and 35 deletions
+15
View File
@@ -0,0 +1,15 @@
// 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);