Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef PSPSYSCLIB_H
00014 #define PSPSYSCLIB_H
00015
00016 #include <pspkerneltypes.h>
00017 #include <stdarg.h>
00018
00019 #ifdef __cplusplus
00020 extern "C" {
00021 #endif
00022
00024 typedef void (*prnt_callback)(void *ctx, int ch);
00025
00035 void prnt(prnt_callback cb, void *ctx, const char *fmt, va_list args);
00036
00039 #ifdef __cplusplus
00040 }
00041 #endif
00042
00043 #endif