Files
jak-project/common/util/diff.h
T
water111 3a1c9eaf75 [decompiler] clean up offline test program, reorganize decomp order (#895)
* make a new offline test

* finish up offline test and fix crash bugs
2021-10-12 20:33:26 -04:00

8 lines
188 B
C++

#pragma once
#include <string>
/*!
* Diff two strings. This uses the code from gtest's diff implementation.
*/
std::string diff_strings(const std::string& lhs, const std::string& rhs);