mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-25 15:39:55 +00:00
fe0eb04a22
This just seems like something we should be able to do. The compiler knows how long my "string literal" is, passing it along manually seems siilly.
30 lines
503 B
C++
30 lines
503 B
C++
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
extern "C" {
|
|
int dbgprintf(const char* fmt, ...);
|
|
int dbgputstr(const char*, int);
|
|
int kprintf(const char* fmt, ...);
|
|
int sprintf(char* buf, const char* fmt, ...);
|
|
void set_serial_debug(bool on_or_off);
|
|
int get_serial_debug();
|
|
}
|
|
|
|
#ifdef KERNEL
|
|
# define printf dbgprintf
|
|
#endif
|
|
|
|
#ifndef __serenity__
|
|
#define dbgprintf printf
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
|
|
template <size_t N>
|
|
inline int dbgputstr(const char (&array)[N])
|
|
{
|
|
return ::dbgputstr(array, N);
|
|
}
|
|
|
|
#endif
|