CodeCommitsIssuesPull requestsActionsInsightsSecurity
ba69724a22291270a1cbaf603c575b5c2fee0558

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

base/memcpy/memcpy.h

17lines · modecode

1#pragma once
2
3#ifdef __cplusplus
4extern "C"
5{
6#endif
7
8#include "impl/FastMemcpy.h"
9
10void * __attribute__((__weak__)) memcpy(void * __restrict destination, const void * __restrict source, size_t size)
11{
12 return memcpy_fast(destination, source, size);
13}
14
15#ifdef __cplusplus
16}
17#endif