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

📄 charconv_libjcode.c

📁 about sound recognition.i want to downlod
💻 C
字号:
/** * @file   charconv_libjcode.c * @author Akinobu LEE * @date   Thu Feb 17 16:02:41 2005 *  * <JA> * @brief  矢机コ〖ド恃垂 (libjcode 蝗脱) * * 泣塑胳の矢机コ〖ド(JIS,EUC,SJIS)の陵高恃垂のみ材墙であるˉ * * </JA> *  * <EN> * @brief  Character set conversion using libjcode * * Only conversion between Japanese character set (jis, euc-jp, shift-jis) * is supported. * * </EN> *  * $Revision: 1.3 $ *  *//* * Copyright (c) 1991-2006 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology * Copyright (c) 2005-2006 Julius project team, Nagoya Institute of Technology * All rights reserved */#include <sent/stddefs.h>#ifdef CHARACTER_CONVERSION#ifdef USE_LIBJCODE#include <jlib.h>static int convert_to = SJIS; ///< Conversion target/**  * Setup charset conversion for libjcode. *  * @param fromcode [in] input charset name (ignored, will be auto-detected) * @param tocode [in] output charset name, or NULL when disable conversion * @param enable_conv [out] return whether conversion should be enabled or not *  * @return TRUE on success, FALSE on failure (unknown name). */booleancharconv_libjcode_setup(char *fromcode, char *tocode, boolean *enable_conv){  if (tocode == NULL) {    /* disable conversion */    *enable_conv = FALSE;  } else {    if (strmatch(tocode, "sjis")	|| strmatch(tocode, "sjis-win")	|| strmatch(tocode, "shift-jis")	|| strmatch(tocode, "shift_jis")) {      convert_to = SJIS;    } else if (strmatch(tocode, "euc-jp")	       || strmatch(tocode, "euc")	       || strmatch(tocode, "eucjp")) {      convert_to = EUC;    } else if (strmatch(tocode, "jis")) {      convert_to = JIS;    } else {      j_printerr("Error: character set \"%s\" not supported\n", tocode);      j_printerr("Error: only \"sjis\", \"euc-jp\" and \"jis\" can be used with libjcode.\n");      *enable_conv = FALSE;      return FALSE;    }    *enable_conv = TRUE;  }  return TRUE;}/**  * Apply charset conversion to a string using libjcode. *  * @param instr [in] source string * @param outstr [out] destination buffer * @param maxoutlen [in] allocated length of outstr in byte. * * @return either of instr or outstr, that holds the result string. * */char *charconv_libjcode(char *instr, char *outstr, int maxoutlen){  switch(convert_to) {  case SJIS:    toStringSJIS(instr, outstr, maxoutlen);    break;  case EUC:    toStringEUC(instr, outstr, maxoutlen);    break;  case JIS:    toStringJIS(instr, outstr, maxoutlen);    break;  }  return(outstr);}#endif /* USE_LIBJCODE */#endif /* CHARACTER_CONVERSION */

⌨️ 快捷键说明

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