summaryrefslogtreecommitdiff
path: root/v4.0/src/TOOLS/BLD/INC/MEMORY.H
diff options
context:
space:
mode:
authorGravatar Mark Zbikowski2024-04-25 21:24:10 +0100
committerGravatar Microsoft Open Source2024-04-25 22:32:27 +0000
commit2d04cacc5322951f187bb17e017c12920ac8ebe2 (patch)
tree80ee017efa878dfd5344b44249e6a241f2a7f6e2 /v4.0/src/TOOLS/BLD/INC/MEMORY.H
parentMerge pull request #430 from jpbaltazar/typoptbr (diff)
downloadms-dos-main.tar.gz
ms-dos-main.tar.xz
ms-dos-main.zip
MZ is back!HEADmain
Diffstat (limited to 'v4.0/src/TOOLS/BLD/INC/MEMORY.H')
-rw-r--r--v4.0/src/TOOLS/BLD/INC/MEMORY.H34
1 files changed, 34 insertions, 0 deletions
diff --git a/v4.0/src/TOOLS/BLD/INC/MEMORY.H b/v4.0/src/TOOLS/BLD/INC/MEMORY.H
new file mode 100644
index 0000000..519b71d
--- /dev/null
+++ b/v4.0/src/TOOLS/BLD/INC/MEMORY.H
@@ -0,0 +1,34 @@
1/***
2*memory.h - declarations for buffer (memory) manipulation routines
3*
4* Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved.
5*
6*Purpose:
7* This include file contains the function declarations for the
8* buffer (memory) manipulation routines.
9* [System V]
10*
11*******************************************************************************/
12
13
14#ifndef _SIZE_T_DEFINED
15typedef unsigned int size_t;
16#define _SIZE_T_DEFINED
17#endif
18
19#ifndef NO_EXT_KEYS /* extensions enabled */
20 #define _CDECL cdecl
21#else /* extensions not enabled */
22 #define _CDECL
23#endif /* NO_EXT_KEYS */
24
25
26/* function prototypes */
27
28void * _CDECL memccpy(void *, void *, int, unsigned int);
29void * _CDECL memchr(const void *, int, size_t);
30int _CDECL memcmp(const void *, const void *, size_t);
31void * _CDECL memcpy(void *, const void *, size_t);
32int _CDECL memicmp(void *, void *, unsigned int);
33void * _CDECL memset(void *, int, size_t);
34void _CDECL movedata(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int);