sysfunc.h
来自「speech signal process tools」· C头文件 代码 · 共 42 行
H
42 行
/* File: sysfunct.h */#ifndef __STDC__/* C Library functions */ extern char *index(), *rindex();extern double atof();extern long atol(), ftell();extern int atoi();#else#include <stdlib.h>#endif#if defined(__STDC__) || defined(__GNUC__) || defined(sgi)#define PROTO(ARGS) ARGS#else#define PROTO(ARGS) ()#endif/* Support library functions *//* spinput */ int spx_read_header PROTO((FILE *, int *, int, char **)) ;/* spinput */ struct field_t **spx_get_field_vector PROTO((int)) ;/* spinput */ struct field_t *spx_allocate_field PROTO((int, char *, char *v, int )) ;/* spinput */ struct field_t *spx_allocate_field_str PROTO((int, char *, char *value, int )) ;/* spinput */ struct header_t *spx_allocate_header PROTO((int, struct field_t **)) ;/* spinput.c */ int spx_copy_field_vector PROTO((struct field_t **, struct field_t **, int )) ;/* spinput.c */ int spx_deallocate_field PROTO((struct field_t *)) ;/* spinput.c */ int spx_deallocate_header PROTO((struct header_t *)) ;/* spinput.c */ int spx_read_header PROTO((FILE *, int *, int, char **)) ;/* spoutput.c */ int spx_tp PROTO((int )) ;/* spoutput.c */ int spx_write_header PROTO((struct header_t *, struct fileheader_fixed *, FILE *, int , SP_INTEGER *, SP_INTEGER *)) ;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?