📄 memory.h
字号:
#ifndef MEMORY_H
#define MEMORY_H
/*==========================================================================
Standard Memory Header
DESCRIPTION
The ARM compiler does not include a memory.h header, so we provide one
here and point to the standard ARM include file which does have
memory prototypes.
Copyright (c) 1997,1998 by QUALCOMM Incorporated. All Rights Reserved.
Copyright (c) 1999 by QUALCOMM Incorporated. All Rights Reserved.
===========================================================================*/
/*===========================================================================
EDIT HISTORY FOR FILE
$PVCSPath: O:/src/asw/COMMON/vcs/memory.h_v 1.1 29 Jan 2001 10:50:12 dyang $
$Header: //depot/asic/msmshared/services/common/memory.h#2 $ $DateTime: 2001/01/29 10:46:10 $ $Author: dyang $
when who what, where, why
-------- --- ----------------------------------------------------------
01/25/01 day Merged from MSM5105_COMMON.00.00.05.
Modified to pull in string.h for NT builds.
11/03/98 jct Added the else clause to include <memory.h> for non-ARM builds.
07/10/98 jct Revised for coding standard, removed unused code
01/01/98 bwj Created
===========================================================================*/
/*===========================================================================
INCLUDE FILES
===========================================================================*/
#ifdef TG
#include "target.h"
#endif
#if defined(T_ARM) || defined(T_WINNT)
/* --------------------------------------
** For the ARM Compiler, the prototypes
** which are typcially found in memory.h
** are instead in string.h
** -------------------------------------- */
#include <string.h>
#endif
#endif /* END MEMORY_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -