| 52 | } |
| 53 | |
| 54 | std::vector<wdiff> |
| 55 | ComputeWordDiffs(const String& str1, const String& str2, |
| 56 | bool case_sensitive, EolCompareMode eol_mode, int whitespace, bool ignore_numbers, int breakType, bool byte_level) |
| 57 | { |
| 58 | String strs[3] = {str1, str2, _T("")}; |
| 59 | return ComputeWordDiffs(2, strs, case_sensitive, eol_mode, whitespace, ignore_numbers, breakType, byte_level); |
| 60 | } |
| 61 | |
| 62 | struct Comp02Functor |
| 63 | { |