/* * Copyright (c) 2021, Mustafa Quraish * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include "Hunks.h" #include namespace Diff { ErrorOr> from_text(StringView old_text, StringView new_text, size_t context = 0); }