blob: d1b061edb866e530b37d091b81028f6efb03bbe4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* Copyright (c) 2021, Mustafa Quraish <mustafa@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include "Hunks.h"
namespace Diff {
Vector<Hunk> from_text(StringView old_text, StringView new_text);
}
|