mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-08 23:42:53 +03:00
7c0540a229
This has KString, KBuffer, DoubleBuffer, KBufferBuilder, IOWindow, UserOrKernelBuffer and ScopedCritical classes being moved to the Kernel/Library subdirectory. Also, move the panic and assertions handling code to that directory.
47 lines
887 B
C++
47 lines
887 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/ByteBuffer.h>
|
|
#include <AK/Error.h>
|
|
#include <AK/StringView.h>
|
|
|
|
#ifdef KERNEL
|
|
# include <Kernel/Library/KString.h>
|
|
#else
|
|
# include <AK/DeprecatedString.h>
|
|
#endif
|
|
|
|
namespace AK {
|
|
|
|
constexpr u8 decode_hex_digit(char digit)
|
|
{
|
|
if (digit >= '0' && digit <= '9')
|
|
return digit - '0';
|
|
if (digit >= 'a' && digit <= 'f')
|
|
return 10 + (digit - 'a');
|
|
if (digit >= 'A' && digit <= 'F')
|
|
return 10 + (digit - 'A');
|
|
return 255;
|
|
}
|
|
|
|
ErrorOr<ByteBuffer> decode_hex(StringView);
|
|
|
|
#ifdef KERNEL
|
|
ErrorOr<NonnullOwnPtr<Kernel::KString>> encode_hex(ReadonlyBytes);
|
|
#else
|
|
DeprecatedString encode_hex(ReadonlyBytes);
|
|
#endif
|
|
|
|
}
|
|
|
|
#if USING_AK_GLOBALLY
|
|
using AK::decode_hex;
|
|
using AK::decode_hex_digit;
|
|
using AK::encode_hex;
|
|
#endif
|