2021-08-29 06:51:42 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, Mahmoud Mandour <ma.mandourr@gmail.com>
|
2024-10-04 08:19:50 -03:00
|
|
|
* Copyright (c) 2023, Andreas Kling <andreas@ladybird.org>
|
2021-08-29 06:51:42 -03:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2023-02-28 12:39:41 -03:00
|
|
|
#include <AK/Forward.h>
|
2025-12-04 14:12:06 -03:00
|
|
|
#include <LibCore/Export.h>
|
2021-08-29 06:51:42 -03:00
|
|
|
|
|
|
|
|
namespace Core::Version {
|
|
|
|
|
|
2025-12-04 14:12:06 -03:00
|
|
|
CORE_API String read_long_version_string();
|
2021-08-29 06:54:59 -03:00
|
|
|
|
2021-08-29 06:51:42 -03:00
|
|
|
}
|