mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-10 02:01:03 +00:00
16 lines
251 B
C
16 lines
251 B
C
|
|
/*
|
||
|
|
* 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 const& old_text, StringView const& new_text);
|
||
|
|
|
||
|
|
}
|