brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · a131b68 Raw
32 lines · c
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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_LIBC_SRC_STRING_MEMORY_UTILS_INLINE_BZERO_H10#define LLVM_LIBC_SRC_STRING_MEMORY_UTILS_INLINE_BZERO_H11 12#include "src/__support/common.h"13#include "src/__support/macros/attributes.h" // LIBC_INLINE14#include "src/__support/macros/config.h"     // LIBC_NAMESPACE_DECL15#include "src/string/memory_utils/inline_memset.h"16 17#include <stddef.h> // size_t18 19namespace LIBC_NAMESPACE_DECL {20 21[[gnu::flatten]] LIBC_INLINE static void inline_bzero(Ptr dst, size_t count) {22  inline_memset(dst, 0, count);23}24 25[[gnu::flatten]] LIBC_INLINE static void inline_bzero(void *dst, size_t count) {26  inline_bzero(reinterpret_cast<Ptr>(dst), count);27}28 29} // namespace LIBC_NAMESPACE_DECL30 31#endif // LLVM_LIBC_SRC_STRING_MEMORY_UTILS_INLINE_BZERO_H32