mirror of
https://github.com/SerenityOS/serenity
synced 2024-11-03 03:29:38 +00:00
1682f0b760
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
32 lines
762 B
C++
32 lines
762 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __serenity__
|
|
# ifdef KERNEL
|
|
# include <Kernel/kstdio.h>
|
|
# else
|
|
# include <AK/Types.h>
|
|
# include <stdarg.h>
|
|
extern "C" {
|
|
void dbgputstr(const char*, size_t);
|
|
int sprintf(char* buf, const char* fmt, ...) __attribute__((format(printf, 2, 3)));
|
|
int snprintf(char* buffer, size_t, const char* fmt, ...) __attribute__((format(printf, 3, 4)));
|
|
}
|
|
# endif
|
|
#else
|
|
# include <stdio.h>
|
|
inline void dbgputstr(const char* characters, size_t length)
|
|
{
|
|
fwrite(characters, 1, length, stderr);
|
|
}
|
|
#endif
|
|
template<size_t N>
|
|
inline void dbgputstr(const char (&array)[N])
|
|
{
|
|
return ::dbgputstr(array, N);
|
|
}
|