memory.h
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:

操作系统开发

开发平台:

Visual C++

  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. #ifndef _SIZE_T_DEFINED
  13. typedef unsigned int size_t;
  14. #define _SIZE_T_DEFINED
  15. #endif
  16. #ifndef NO_EXT_KEYS /* extensions enabled */
  17.     #define _CDECL  cdecl
  18. #else /* extensions not enabled */
  19.     #define _CDECL
  20. #endif /* NO_EXT_KEYS */
  21. /* function prototypes */
  22. void * _CDECL memccpy(void *, void *, int, unsigned int);
  23. void * _CDECL memchr(const void *, int, size_t);
  24. int _CDECL memcmp(const void *, const void *, size_t);
  25. void * _CDECL memcpy(void *, const void *, size_t);
  26. int _CDECL memicmp(void *, void *, unsigned int);
  27. void * _CDECL memset(void *, int, size_t);
  28. void _CDECL movedata(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int);