mtrf.h

来自「speech signal process tools」· C头文件 代码 · 共 47 行

H
47
字号
#ifndef MTRF_HEADER#define MTRF_HEADER/* Header file: mtfr.h */#if defined(__STDC__) || defined(__GNUC__) || defined(sgi)#define PROTO(ARGS)	ARGS#else#define PROTO(ARGS)	()#endifchar *mtrf_malloc PROTO((int bytes)) ;char *mtrf_realloc PROTO((char *ptr, int bytes)) ;int mtrf_free PROTO((char *p)) ;char *mtrf_strdup PROTO((char *p)) ;void mtrf_set_dealloc PROTO((int n)) ;void mtrf_set_verbose PROTO((int n)) ;int mtrf_get_dealloc PROTO((void)) ;int mtrf_get_verbose PROTO((void)) ;#ifdef REDEFINE_ALLOCATION#ifdef malloc#       undef malloc#endif#define malloc(_a)          mtrf_malloc((_a))#ifdef realloc#       undef realloc#endif#define realloc(_a,_b)      mtrf_realloc ((_a), (_b))#ifdef free#       undef free#endif#define free(_a)            mtrf_free ((_a))#ifdef strdup#       undef strdup#endif#define strdup(_a)          mtrf_strdup ((_a))#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?