tmpfile.c
来自「speech signal process tools」· C语言 代码 · 共 36 行
C
36 行
/* * This material contains proprietary software of Entropic Speech, Inc. * Any reproduction, distribution, or publication without the prior * written permission of Entropic Speech, Inc. is strictly prohibited. * Any public distribution of copies of this work authorized in writing by * Entropic Speech, Inc. must bear the notice * * "Copyright (c) 1993 Entropic Speech, Inc.; All rights reserved" **/#ifndef lint static char *sccs_id = "@(#)tmpfile.c 1.4 1/4/93 ESI";#endif#include <stdio.h>#include <esps/esps.h>FILE *e_temp_file();FILE *tmpfile(){ FILE *tmp; char *file_name; tmp = e_temp_file(NULL, &file_name); spsassert(tmp,"Cannot create temporary file!\n"); (void)unlink(file_name); return tmp;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?