#include <pspkerneltypes.h>
#include <stdarg.h>
Go to the source code of this file.
|
| typedef void(* | prnt_callback) (void *ctx, int ch) |
| | Callback type, ch is 0x200 on start of string, 0x201 on end.
|
| |
|
| void | prnt (prnt_callback cb, void *ctx, const char *fmt, va_list args) |
| | Generic print routine.
|
| |
◆ prnt_callback
| typedef void(* prnt_callback) (void *ctx, int ch) |
Callback type, ch is 0x200 on start of string, 0x201 on end.
◆ prnt()
| void prnt |
( |
prnt_callback | cb, |
|
|
void * | ctx, |
|
|
const char * | fmt, |
|
|
va_list | args ) |
Generic print routine.
- Parameters
-
| cb | - Callback, called for every character printed |
| ctx | - Context parameter passed to the callback |
| fmt | - Format data |
| args | - Arguments for format |