| 244 | } |
| 245 | |
| 246 | void SetTempString(char *buf,int len) |
| 247 | { |
| 248 | len = std::min(len, LEN_TEMP_STRING); |
| 249 | memcpy(temp_str.data,buf,len); |
| 250 | temp_str.len_data = len; |
| 251 | temp_str.data[temp_str.len_data] = '\0'; |
| 252 | } |
| 253 | |
| 254 | string_node * GetTempString() |
| 255 | { |
no outgoing calls
no test coverage detected