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