xref: /aosp_15_r20/external/llvm-libc/src/string/memory_utils/inline_bzero.h (revision 71db0c75aadcf003ffe3238005f61d7618a3fead)
1 //===-- Implementation of bzero -------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef LLVM_LIBC_SRC_STRING_MEMORY_UTILS_INLINE_BZERO_H
10 #define LLVM_LIBC_SRC_STRING_MEMORY_UTILS_INLINE_BZERO_H
11 
12 #include "src/__support/common.h"
13 #include "src/__support/macros/config.h"
14 #include "src/string/memory_utils/inline_memset.h"
15 
16 #include <stddef.h> // size_t
17 
18 namespace LIBC_NAMESPACE_DECL {
19 
inline_bzero(Ptr dst,size_t count)20 [[gnu::flatten]] LIBC_INLINE static void inline_bzero(Ptr dst, size_t count) {
21   inline_memset(dst, 0, count);
22 }
23 
inline_bzero(void * dst,size_t count)24 [[gnu::flatten]] LIBC_INLINE static void inline_bzero(void *dst, size_t count) {
25   inline_bzero(reinterpret_cast<Ptr>(dst), count);
26 }
27 
28 } // namespace LIBC_NAMESPACE_DECL
29 
30 #endif // LLVM_LIBC_SRC_STRING_MEMORY_UTILS_INLINE_BZERO_H
31