Version.h 288 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2021, Mahmoud Mandour <ma.mandourr@gmail.com>
  3. * Copyright (c) 2023, Andreas Kling <kling@serenityos.org>
  4. *
  5. * SPDX-License-Identifier: BSD-2-Clause
  6. */
  7. #pragma once
  8. #include <AK/Forward.h>
  9. namespace Core::Version {
  10. ErrorOr<String> read_long_version_string();
  11. }