Format.h 230 B

12345678910111213
  1. /*
  2. * Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/DeprecatedString.h>
  8. namespace Diff {
  9. DeprecatedString generate_only_additions(StringView);
  10. };