mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 05:55:13 +00:00
15 lines
237 B
C++
15 lines
237 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 old_text, StringView new_text);
|
|
|
|
}
|