mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
14 lines
269 B
C
14 lines
269 B
C
|
/*
|
||
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/String.h>
|
||
|
#include <QString>
|
||
|
|
||
|
AK::String akstring_from_qstring(QString const&);
|
||
|
QString qstring_from_akstring(AK::String const&);
|