⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exprompt.c

📁 speech signal process tools
💻 C
字号:
/* * 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) 1990 Entropic Speech, Inc.; All rights reserved" * * Program: exprompt.c * * Written by:  John Shore * Checked by: * * This is exprompt - fills in parameter file prompts via X Window */#ifndef lintstatic char *sccs_id = "@(#)exprompt.c	1.14	15 Mar 1994	ESI";#endif#define VERSION "1.14"#define DATE "15 Mar 1994"/* * system include files */#include <stdio.h>#include <xview/xview.h>#include <xview/frame.h>#include <xview/panel.h>/* * esps include files */#include <esps/esps.h>#include <esps/unix.h>/* * defines */#ifndef NULL#define NULL 0#endif#define Fprintf (void)fprintf#define Fflush (void)fflush#define PROG Fprintf(stderr, "%s: ", ProgName)#define DEBUG(n) if (debug_level >= n) Fprintf#define ERROR_EXIT(text) {(void) fprintf(stderr, "%s: %s - exiting\n", \		ProgName, text); SYNTAX; exit(1);}#define EXIT Fprintf(stderr, "\n"); exit(1);#define ERROR_EXIT1(fmt,a) {PROG; Fprintf(stderr, (fmt), (a)); EXIT}#define TRYALLOC(type,num,var,msg) { \    if (((var) = (type *) calloc((unsigned)(num),sizeof(type))) == NULL) \    ERROR_EXIT1("Can't allocate memory--%s", (msg))}#define SYNTAX USAGE ("exprompt [-P param_file] [-h help_name] [-n] [-c checkfile]\n\t [-X x_pos] [-Y y_pos] [-x debug_level] [-z] param_out")/* * system functions and variables */int getopt ();extern  optind;extern	char *optarg;extern int fullscreendebug;	/* used by xview *//* * global function declarations */#if !defined(hpux) && !defined(OS5) && !defined(DEC_ALPHA)char *calloc();#endif/* * global variable declarations */int		    debug_level = 0;int                 do_color = 0;char		    *ProgName = "xprompt";/* * main program */main (argc, argv)int argc;char **argv;{ /*  * setup and initialization  */  int		    c;		/* for getopt return */  int               zflag = 0;	/* flag for silent operation */  int nflag = SC_CHECK_FILE;	/* for getopt return */  int num_files = 0;		/* number of file arguments */  char *paramfile = "params";  char *param_out = NULL;	/* output parameter file name */  FILE *outstrm = NULL;		/* output parameter file stream */  char *checkfile = NULL;  char *help_name = NULL;	/* name of program for eman call */  int ret;			/* return code for param_prompt*/  int x_pos = -1;  int y_pos = -1;  void   done();  /*try to make this conditional on X windows*/  /*what if work is in lib routine --     can it know whether or not init was done? */  fullscreendebug = 1;		/* global prevents server grabs that kill				   SGIs */  xv_init (XV_INIT_ARGC_PTR_ARGV, &argc, argv, NULL);  /*   * process command line options   */  while ((c = getopt (argc, argv, "x:P:nc:h:X:Y:z")) != EOF) {    switch (c) {    case 'x':       debug_level = atoi (optarg);      break;    case 'P':      paramfile = optarg;      break;    case 'n':      nflag = SC_NOCOMMON;      break;    case 'c':      checkfile = optarg;      break;    case 'h':      help_name = optarg;      break;    case 'X':      x_pos = atoi(optarg);      break;    case 'Y':      y_pos = atoi(optarg);      break;    case 'z':      zflag++;      break;    default:      SYNTAX;    }  }  if ((nflag == SC_NOCOMMON) && (checkfile != NULL))     ERROR_EXIT("can't specify checkfile (-c) if common disabled (-n)");  /* Get name of output parameter file */  num_files = argc - optind;  if (num_files != 1)    SYNTAX;  param_out = argv[optind];  /* make sure can write the output parameter file; this also clears it*/  if ((outstrm = fopen(param_out, "w")) == NULL)    ERROR_EXIT1("can't write output file %s\n", param_out)  else    fclose(outstrm);   /* do all the work */  ret =     exv_prompt_params(paramfile, nflag, checkfile, param_out, 		  help_name, x_pos, y_pos);  if (debug_level)     Fprintf(stderr, "%s: exv_prompt_params returns %d\n", ProgName, ret);   if (ret != 0 && !zflag)    if (!zflag)      Fprintf(stderr, "%s: trouble creating parameter file\n", ProgName);  if (ret == 1 && !zflag)     Fprintf(stderr, "%s: no parameters or no indefinite parameters\n", ProgName);  if (ret == 3 && !zflag)   {    Fprintf(stderr, 	    "%s: didn't exit via DONE button; no parameter file written.\n",	    ProgName);    unlink(param_out);  }  (void) exit(ret);}

⌨️ 快捷键说明

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