/* ============================================================================= memcpy.c -- external declarations ============================================================================= */ #pragma once #include "stdint.h" /* ============================================================================= external functions ============================================================================= */ extern void *memcpy(void *vp1, void *vp2, int16_t n);