2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 ANSI C function memchr().
8 #include <proto/exec.h>
10 /*****************************************************************************
23 Copy the contents of a part of memory to another. Both areas
24 must not overlap. If they do, use memmove().
27 dest - The first byte of the destination area in memory
28 src - The first byte of the source area in memory
29 count - How many bytes to copy
44 ******************************************************************************/
46 const char * ptr
= (char *)mem
;