ln_debug_0.cc

来自「这是处理语音信号的程序」· CC 代码 · 共 34 行

CC
34
字号
// file: ln_debug_0.cc// // isip include files//#include "link_node.h"#include "link_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 Link_node::debug_cc(FILE* fp_a, char_1* message_a) {  // dump the item pointer  //  fprintf(fp_a, "%s::%s: item_d = %p\n", LN_CLASS_NAME, message_a, item_d);  // dump the link pointers  //  fprintf(fp_a, "%s::%s: prev_d = %p\n", LN_CLASS_NAME, message_a, prev_d);  fprintf(fp_a, "%s::%s: next_d = %p\n\n", LN_CLASS_NAME, message_a, next_d);    // exit gracefully  //  return ISIP_TRUE;}

⌨️ 快捷键说明

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