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