mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-13 10:27:05 +02:00
14 lines
188 B
C++
14 lines
188 B
C++
/*
|
|
* Copyright (c) 2024, Sönke Holz <sholz8530@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Kernel {
|
|
|
|
void ucs2_dbgln(char16_t const* message);
|
|
|
|
}
|