00001 /*header file for src/memory/memset.cpp*/ 00002 00003 #ifndef _CORE_MEMORY_MEMSET_HPP 00004 #define _CORE_MEMORY_MEMSET_HPP 00005 00006 void *memmove(void *s1, const void *s2, uint32 count); /*copy mem from DS:s2 to ES:s1*/ 00007 void *memset(void *buffer, int c, uint32 num); /*ansi-c memset function*/ 00008 00009 /*the macro movemem(), for compability with old code*/ 00010 // #define movemem(src,dest,count) memmove((void*)(dest),(void*)(src),(count)) 00011 00012 #endif