50void Kprintf(
const char *format, ...) __attribute__((format(printf, 1, 2)));
 
void sceKernelRegisterDebugPutchar(PspDebugPutChar func)
Register a debug put character handler.
 
PspDebugPutChar sceKernelGetDebugPutchar(void)
Get the debug put character handler.
 
void Kprintf(const char *format,...)
Kernel printf function.
 
void(* PspDebugPutChar)(unsigned short *args, unsigned int ch)
Typedef for the debug putcharacter handler.
Definition pspkdebug.h:28