wined3d: Verify each state table entry has either a handler or a representative.
[wine.git] / include / msvcrt / memory.h
blob769fcfc88d68740c4b7b9b38bbbbbec25c659bd1
1 /*
2 * Memory definitions
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
11 #include <crtdefs.h>
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
17 #ifndef _CRT_MEMORY_DEFINED
18 #define _CRT_MEMORY_DEFINED
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);
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); }
30 #endif /* _CRT_MEMORY_DEFINED */
32 #ifdef __cplusplus
34 #endif
36 #endif /* __WINE_MEMORY_H */