4#ifndef TETL_CSTRING_MEMCPY_HPP
5#define TETL_CSTRING_MEMCPY_HPP
7#include <etl/_cstddef/size_t.hpp>
8#include <etl/_strings/cstr.hpp>
16inline auto memcpy(
void* dest,
void const* src,
etl::size_t n) ->
void*
19 return __builtin_memcpy(dest, src, n);
21 return etl::detail::memcpy<
unsigned char, etl::size_t>(dest, src, n);
auto memcpy(void *dest, void const *src, etl::size_t n) -> void *
Copy the first n bytes pointed to by src to the buffer pointed to by dest. Source and destination may...
Definition memcpy.hpp:16
Definition adjacent_find.hpp:9