Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
16 * <<memcpy>>---copy memory regions
19 * void* memcpy(void *<[out]>, const void *<[in]>, size_t <[n]>);
20 * This function copies <[n]> bytes from the memory region
21 * pointed to by <[src]> to the memory region pointed to by
23 * If the regions overlap, the behavior is undefined.
25 * <<memcpy>> A pointer to a location length bytes beyond
26 * dest (i.e. the location dest+length).
28 * <<memcpy>> is ANSI C.
29 * <<memcpy>> requires no supporting OS subroutines.
45 IMPORT_C void* memcpy(void* aTrg, const void* aSrc, unsigned int aLength);
47 EXPORT_C void* _e32memcpy (void* dest, const void* src, size_t length)
49 return (char*)memcpy(dest, src, length);