useropt.h

来自「julius version 4.12.about sound recognit」· C头文件 代码 · 共 48 行

H
48
字号
/** * @file   useropt.h *  * <JA> * @brief  ユ〖ザ回年の jconf オプション橙磨 * </JA> *  * <EN> * @brief  User-defined jconf options * </EN> *  * @author Akinobu Lee * @date   Sun Sep 02 03:09:12 2007 * * $Revision: 1.2 $ *  *//* * Copyright (c) 1991-2007 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology * Copyright (c) 2005-2007 Julius project team, Nagoya Institute of Technology * All rights reserved */#ifndef __J_USEROPT_H__#define __J_USEROPT_H__/** * User-defined option *  */typedef struct __j_useropt__ {  char *optstr;			///< Option string  char *desc;			///< Description that will be output on help  int argnum;			///< Number of arguments  int reqargnum;		///< Number of optional arguments in argnum  boolean (*func)(Jconf *jconf, char *arg[], int argnum); ///< Handling function  struct __j_useropt__ *next;	///< Pointer to next data} USEROPT;boolean j_add_option(char *fmt, int argnum, int reqargnum, char *desc, boolean (*func)(Jconf *jconf, char *arg[], int argnum));void useropt_free_all();int useropt_exec(Jconf *jconf, char *argv[], int argc, int *n);void useropt_show_desc(FILE *fp);#endif /* __J_USEROPT_H__ */

⌨️ 快捷键说明

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