general.h

来自「一个语音信号端点检测的程序」· C头文件 代码 · 共 44 行

H
44
字号
/* * General definitions * * Bruce Lowerre, Public domain, 1995, 1997 * * $Log: general.h,v $ * Revision 1.1  1997/05/13 14:54:43  lowerre * Initial revision * * */#ifndef GENERAL_H#define GENERAL_H//#include <unistd.h>#include <sys/types.h>#include <iostream.h>#include <fstream.h>#include <math.h>#include <signal.h>#include <setjmp.h>#include <time.h>#include <string.h>#include <stdlib.h>#include <stdio.h>			// needed for sprintf#ifndef LOCAL#define LOCAL static#endif// How come the follow ain't defined in C++????#define TAB	'\t'#undef False#undef Truetypedef enum {False, True} BOOLEAN;#endif					// end of general.h

⌨️ 快捷键说明

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