📄 lat_get_3.cc
字号:
// file: lat_get_3.cc//// isip include files//#include "lattice.h"#include "lattice_constants.h"// method: get_utterance_cc//// arguments:// char_1*& utterance_a: (output) utterance represented by the lattice// // return: a logical_1 indicating status//// this method returns the utterance represented by the lattice//logical_1 Lattice::get_utterance_cc(char_1*& utterance_a) { // allocate memory for the output buffer // if (utterance_a != (char_1*)NULL) { delete [] utterance_a; } utterance_a = new char_1[strlen((char*)utterance_d)+1]; strcpy((char*)utterance_a, (char*)utterance_d); // exit gracefully // return ISIP_TRUE;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -