13 lines
347 B
C++
13 lines
347 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
/*!
|
|
* Diff two strings. This uses the code from gtest's diff implementation.
|
|
*/
|
|
namespace google_diff {
|
|
std::string diff_strings(const std::string& lhs, const std::string& rhs);
|
|
std::vector<std::string> split_string(const ::std::string& str, char delimiter = '\n');
|
|
} // namespace google_diff
|