Files
UnrealEngine/Engine/Source/ThirdParty/Blosc/c-blosc-1.21.0/blosc/fastcopy.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

20 lines
714 B
C

/*********************************************************************
Blosc - Blocked Shuffling and Compression Library
Author: Francesc Alted <francesc@blosc.org>
Creation date: 2018-01-03
See LICENSE.txt for details about copyright and rights to use.
**********************************************************************/
#ifndef BLOSC_FASTCOPY_H
#define BLOSC_FASTCOPY_H
/* Same semantics than memcpy() */
unsigned char *fastcopy(unsigned char *out, const unsigned char *from, unsigned len);
/* Same as fastcopy() but without overwriting origin or destination when they overlap */
unsigned char* copy_match(unsigned char *out, const unsigned char *from, unsigned len);
#endif //BLOSC_FASTCOPY_H