📄 txc_os_mem_mgmt.h
字号:
/*--------------------------------------------------------------------------
******* ****
* ***** ** * * * * * * ***** **** * *
* * * * * ** * * * * * * * * * *
* * * * * * * * **** * * * * * ******
* ***** ****** * * * * * ** * * * * * *
* * * * * * ** * * ** ** * * * * * *
* * * * * * * **** * * * * **** * *
Proprietary and Confidential
This program is made available only to customers and prospective customers
of TranSwitch Corporation under license and may be used only with TranSwitch
semi-conductor products.
Copyright(c) 2004 TranSwitch Inc.
|-----------------------------------------------------------------------|
| |
| ******** ****** |
| ** ** ** ** |
| ** ** ** * |
| ** ** ** |
| ** ** ** |
| ** ** ** |
| ** ** * *** |
| ** ** ** ** |
| ******** ****** |
| |
|-----------------------------------------------------------------------|
| Memory Management Source File |
|-----------------------------------------------------------------------|
| |
| Workfile: txc_os_mem_mgmt.h |
| |
| Description: this file contains memory management defines |
| |
-------------------------------------------------------------------------
Revision History
-------------------------------------------------------------------------
Rev # Date Author Description
----- ------ ------- -----------
1.0 09-Mar-01 R. Ruchandani Initial Revision.
-----------------------------------------------------------------------*/
#ifndef TXC_OS_MEM_MGMT_H
#define TXC_OS_MEM_MGMT_H
/***********************************************************************
** Defines **
***********************************************************************/
/***********************************************************************
** Structures **
***********************************************************************/
/***********************************************************************
** Exported Variables **
***********************************************************************/
/***********************************************************************
** Function Prototypes **
***********************************************************************/
char * TXC_Malloc(unsigned int size);
void TXC_Free(void *ptr);
void * TXC_Memset(void * s, int c, TXC_SIZE_T n);
void TXC_Memcpy(void *destPtr, const void *srcPtr, TXC_SIZE_T numBytes);
#endif /* TXC_OS_MEM_MGMT_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -