mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
8bb18fdc56
This is no longer needed as the Kernel can stand on its own legs now and there won't be any conflict with host system data types.
51 lines
967 B
C++
51 lines
967 B
C++
#include "kprintf.h"
|
|
#include "Console.h"
|
|
#include "IO.h"
|
|
#include <LibC/stdarg.h>
|
|
#include "Process.h"
|
|
#include <AK/Types.h>
|
|
#include <AK/printf.cpp>
|
|
|
|
static void console_putch(char*&, char ch)
|
|
{
|
|
Console::the().write(*current, (byte*)&ch, 1);
|
|
}
|
|
|
|
int kprintf(const char* fmt, ...)
|
|
{
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
int ret = printfInternal(console_putch, nullptr, fmt, ap);
|
|
va_end(ap);
|
|
return ret;
|
|
}
|
|
|
|
static void buffer_putch(char*& bufptr, char ch)
|
|
{
|
|
*bufptr++ = ch;
|
|
}
|
|
|
|
int ksprintf(char* buffer, const char* fmt, ...)
|
|
{
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
int ret = printfInternal(buffer_putch, buffer, fmt, ap);
|
|
buffer[ret] = '\0';
|
|
va_end(ap);
|
|
return ret;
|
|
}
|
|
|
|
static void debugger_putch(char*&, char ch)
|
|
{
|
|
IO::out8(0xe9, ch);
|
|
}
|
|
|
|
extern "C" int dbgprintf(const char* fmt, ...)
|
|
{
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
int ret = printfInternal(debugger_putch, nullptr, fmt, ap);
|
|
va_end(ap);
|
|
return ret;
|
|
}
|