| 42 | } |
| 43 | |
| 44 | void SetBreakChars(const tchar_t *breakChars) |
| 45 | { |
| 46 | assert(BreakChars != nullptr); |
| 47 | |
| 48 | if (BreakChars != BreakCharDefaults) |
| 49 | free(BreakChars); |
| 50 | |
| 51 | BreakChars = tc::tcsdup(breakChars); |
| 52 | } |
| 53 | |
| 54 | std::vector<wdiff> |
| 55 | ComputeWordDiffs(const String& str1, const String& str2, |