mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
Use it to make "ls" output a bit better. Also sys$spawn now fails with EACCES if the path is not a file that's executable by the current uid/gid.
34 lines
654 B
C++
34 lines
654 B
C++
#include "kprintf.h"
|
|
#include "Console.h"
|
|
#include <stdarg.h>
|
|
#include <AK/Types.h>
|
|
#include <AK/printf.cpp>
|
|
|
|
static void console_putch(char*, char ch)
|
|
{
|
|
Console::the().write((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;
|
|
}
|