2 *memory.h - declarations for buffer (memory) manipulation routines
4 * Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved.
7 * This include file contains the function declarations for the
8 * buffer (memory) manipulation routines.
11 *******************************************************************************/
14 #ifndef _SIZE_T_DEFINED
15 typedef unsigned int size_t;
16 #define _SIZE_T_DEFINED
19 #ifndef NO_EXT_KEYS /* extensions enabled */
21 #else /* extensions not enabled */
23 #endif /* NO_EXT_KEYS */
26 /* function prototypes */
28 void * _CDECL memccpy(void *, void *, int, unsigned int);
29 void * _CDECL memchr(const void *, int, size_t);
30 int _CDECL memcmp(const void *, const void *, size_t);
31 void * _CDECL memcpy(void *, const void *, size_t);
32 int _CDECL memicmp(void *, void *, unsigned int);
33 void * _CDECL memset(void *, int, size_t);
34 void _CDECL movedata(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int);