Generator.h 288 B

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