myassert.h
来自「傅立叶变换和小波变换是图像压缩的重要工具。该代大戏是利用小波变换进行图像压缩。」· C头文件 代码 · 共 27 行
H
27 行
#ifndef CRBLIB_MYASSERT_H
#define CRBLIB_MYASSERT_H
#include <assert.h>
#ifdef __cplusplus
extern "C" {
#endif
// If you wish to be called back when asserts happen, use the
// routine myAssertSetCallback(). It returns the address of
// the callback routine that you're replacing.
/************************************************************/
typedef void myAssertCallbackFn( void *exp, void *file, unsigned line );
myAssertCallbackFn *myAssertSetCallback( myAssertCallbackFn *newAssertCallback );
/************************************************************/
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?