1 /*
2  * Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef _PICO_MEM_OPS_H
8 #define _PICO_MEM_OPS_H
9 
10 #include "pico/types.h"
11 
12 /** \file mem_ops.h
13  *  \defgroup pico_mem_ops pico_mem_ops
14  *
15  * \brief Provides optimized replacement implementations of the compiler built-in memcpy, memset and related functions
16  *
17  * The functions include:
18  * - memset, memcpy
19  * - __aeabi_memset, __aeabi_memset4, __aeabi_memset8, __aeabi_memcpy, __aeabi_memcpy4, __aeabi_memcpy8
20  *
21  * This library does not provide any additional functions
22  */
23 #endif