ntdll: The large integer functions are 32-bit only.
[wine] / include / msvcrt / memory.h
1 /*
2  * Memory definitions
3  *
4  * Derived from the mingw header written by Colin Peters.
5  * Modified for Wine use by Jon Griffiths and Francois Gouget.
6  * This file is in the public domain.
7  */
8 #ifndef __WINE_MEMORY_H
9 #define __WINE_MEMORY_H
10
11 #include <crtdefs.h>
12
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16
17 #ifndef _CRT_MEMORY_DEFINED
18 #define _CRT_MEMORY_DEFINED
19
20 void* __cdecl memchr(const void*,int,size_t);
21 int   __cdecl memcmp(const void*,const void*,size_t);
22 void* __cdecl memcpy(void*,const void*,size_t);
23 void* __cdecl memset(void*,int,size_t);
24 void* __cdecl _memccpy(void*,const void*,int,unsigned int);
25 int   __cdecl _memicmp(const void*,const void*,unsigned int);
26
27 static inline int memicmp(const void* s1, const void* s2, size_t len) { return _memicmp(s1, s2, len); }
28 static inline void* memccpy(void *s1, const void *s2, int c, size_t n) { return _memccpy(s1, s2, c, n); }
29
30 #endif /* _CRT_MEMORY_DEFINED */
31
32 #ifdef __cplusplus
33 }
34 #endif
35
36 #endif /* __WINE_MEMORY_H */