sysparam.h

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

H
30
字号
/********************************************//** NIST Speech Header Resources (SPHERE)  **//** Release 1.5 (beta)                     **//** Stan Janet (stan@jaguar.ncsl.nist.gov) **//** October 1990                           **//********************************************//* File: sysparams.h */#define FUNCTION#define MIN(x,y)		((x) < (y) ? (x) : (y))#define MAX(x,y)		((x) > (y) ? (x) : (y))#define LINESIZE		16384#define COMMENT_CHAR		';'#define NISTLABEL		"NIST_1A"#define ENDSTR			"end_head"#define HDR_ID_SIZE		8#define HDR_SIZE_SIZE		8#define PAD_NEWLINES		24#define PAD_CHAR		' '#define PAD_MULT		1024struct fileheader_fixed {	char header_id[HDR_ID_SIZE];	char header_size[HDR_SIZE_SIZE];};

⌨️ 快捷键说明

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