16ca54e01SGuillaume Chatelet //===-- Implementation header for bzero -------------------------*- C++ -*-===// 26ca54e01SGuillaume Chatelet // 36ca54e01SGuillaume Chatelet // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 46ca54e01SGuillaume Chatelet // See https://llvm.org/LICENSE.txt for license information. 56ca54e01SGuillaume Chatelet // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 66ca54e01SGuillaume Chatelet // 76ca54e01SGuillaume Chatelet //===----------------------------------------------------------------------===// 86ca54e01SGuillaume Chatelet 96ca54e01SGuillaume Chatelet #ifndef LLVM_LIBC_SRC_STRING_BZERO_H 106ca54e01SGuillaume Chatelet #define LLVM_LIBC_SRC_STRING_BZERO_H 116ca54e01SGuillaume Chatelet 12*c19fda9aSGuillaume Chatelet #include <stddef.h> // size_t 136ca54e01SGuillaume Chatelet 146ca54e01SGuillaume Chatelet namespace __llvm_libc { 156ca54e01SGuillaume Chatelet 166ca54e01SGuillaume Chatelet void bzero(void *ptr, size_t count); 176ca54e01SGuillaume Chatelet 186ca54e01SGuillaume Chatelet } // namespace __llvm_libc 196ca54e01SGuillaume Chatelet 206ca54e01SGuillaume Chatelet #endif // LLVM_LIBC_SRC_STRING_BZERO_H 21