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

📄 lxn_debug_0.cc

📁 这是处理语音信号的程序
💻 CC
字号:
// file: lxn_debug_0.cc// // isip include files//#include "lex_node.h"#include "lex_node_constants.h"// method: debug_cc//// arguments://  FILE* fp: (input) file pointer used for output//  char_1* message: (input) a message concatenated to each debug message//// return: a logical_1 value indicating status//// this method displays the values of all internal data//logical_1 Lex_node::debug_cc(FILE* fp_a, char_1* message_a) {  // dump the phone information  //  fprintf(fp_a, "%s::%s: phone_d = %ld\n", LXN_CLASS_NAME, message_a,	  phone_d);  // dump the score information  //  fprintf(fp_a, "%s::%s: score_d = %f\n", LXN_CLASS_NAME, message_a,	  score_d);  // dump the word_end information  //  fprintf(fp_a, "%s::%s: word_end_d = %c\n", LXN_CLASS_NAME, message_a,	  word_end_d);  // dump the type information  //  fprintf(fp_a, "%s::%s: type_d = %c\n", LXN_CLASS_NAME, message_a,	  type_d);  // dump the word list  //  fprintf(fp_a, "%s::%s: words_d = %p\n\n", LXN_CLASS_NAME, message_a,	  words_d);  if (words_d != (Link_list*)NULL) {    words_d->debug_cc(fp_a, message_a);  }    // dump the child nodes list  //  fprintf(fp_a, "%s::%s: child_d = %p\n\n", LXN_CLASS_NAME, message_a,	  child_d);  if (child_d != (Link_list*)NULL) {    child_d->debug_cc(fp_a, message_a);  }  // exit gracefully  //  return ISIP_TRUE;}

⌨️ 快捷键说明

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