| 193 | } |
| 194 | |
| 195 | void Dictionary::Word::assign(const char* s, FB_SIZE_T len) |
| 196 | { |
| 197 | fb_assert(len < MAX_UCHAR); |
| 198 | textLen = len; |
| 199 | memcpy(text, s, len); |
| 200 | text[len] = '\0'; |
| 201 | } |
| 202 | |
| 203 | Dictionary::Word* MetaName::get(const char* s, FB_SIZE_T len) |
| 204 | { |
no outgoing calls
no test coverage detected