nspalloc.h
来自「利用intel dsplib 库函数进行特定2FSK信号(需传导频)解调」· C头文件 代码 · 共 40 行
H
40 行
/*M*
//
// INTEL CORPORATION PROPRIETARY INFORMATION
// This software is supplied under the terms of a license agreement or
// nondisclosure agreement with Intel Corporation and may not be copied
// or disclosed except in accordance with the terms of that agreement.
// Copyright (c) 1995 Intel Corporation. All Rights Reserved.
//
// $Workfile: nspalloc.h $
// $Revision: 3 $
// $Modtime: 9/11/99 4:22p $
//
// Purpose: NSP 32 bytes aligned allocator/deallocator
//
*M*/
#if !defined(_NSPALLOC_H) || defined (_OWN_BLDPCS)
#define _NSPALLOC_H
#ifdef __cplusplus
extern "C" {
#endif
NSPAPI(void*, nspMalloc, (int length))
NSPAPI(float*, nspsMalloc,(int length))
NSPAPI(double*,nspdMalloc,(int length))
NSPAPI(SCplx*, nspcMalloc,(int length))
NSPAPI(DCplx*, nspzMalloc,(int length))
NSPAPI(short*, nspwMalloc,(int length))
NSPAPI(WCplx*, nspvMalloc,(int length))
NSPAPI(long*, nspiMalloc,(int length))
NSPAPI(ICplx*, nspjMalloc,(int length))
NSPAPI(void, nspFree, (void* ptr ))
#ifdef __cplusplus
}
#endif
#endif /* _NSPALLOC_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?