serenity/Kernel/kstdio.h
Andreas Kling af81645a2a Kernel+LibC: Add a dbgputstr() syscall for sending strings to debug output.
This is very handy for the DebugLogStream implementation, among others. :^)
2019-07-21 21:43:37 +02:00

18 lines
312 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 ksprintf(char* buf, const char* fmt, ...);
}
#ifndef USERLAND
# define printf dbgprintf
#endif
#ifndef __serenity__
#define dbgprintf printf
#endif