#ifndef __FASTMEMCPY_H

#include <stddef.h>

// fast memory copy based on MMX and SSE optimizations
void * fast_memcpy(void * to, const void * from, size_t len);

#endif //__FASTMEMCPY_H
