/* * Copyright (c) 2023, Shannon Booth * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Diff { ErrorOr apply_patch(Stream& out, Vector const& lines, Patch const& patch); }