uOFW
Reverse engineered PSP kernel 6.60.
Loading...
Searching...
No Matches
iofilemgr_stdio.h
1/* Copyright (C) 2011, 2012 The uOFW team
2 See the file COPYING for copying permission.
3*/
4
12#include "common_header.h"
13
24
30
36
45int sceKernelStdoutReopen(const char *file, int flags, SceMode mode);
46
55int sceKernelStderrReopen(const char *file, int flags, SceMode mode);
56
62
68
76int fdprintf(int fd, const char *fmt, ...);
77
84int printf(const char *fmt, ...);
85
93int fdputc(int c, int fd);
94
101int fdgetc(int fd);
102
110char *fdgets(char *s, int fd);
111
118int putchar(int c);
119
127int fdputs(const char *s, int fd);
128
135int puts(const char *s);
136
141int getchar(void);
142
149char *gets(char *s);
150
156
162
165
171
177
183
191
199
int fdputc(int c, int fd)
int sceKernelStderrReopen(const char *file, int flags, SceMode mode)
int sceKernelStdioLseek()
char * fdgets(char *s, int fd)
int sceKernelStdoutReset()
int getchar(void)
int sceKernelRegisterStderrPipe(SceUID id)
int printf(const char *fmt,...)
void sceKernelStdioSendChar()
int sceKernelStderr()
int sceKernelRegisterStdoutPipe(SceUID id)
int fdgetc(int fd)
int sceKernelStdioWrite()
int sceKernelStdioOpen()
int sceKernelStdin()
int sceKernelStdoutReopen(const char *file, int flags, SceMode mode)
int sceKernelStderrReset()
int fdprintf(int fd, const char *fmt,...)
int sceKernelStdioRead()
char * gets(char *s)
int sceKernelStdout()
int puts(const char *s)
int sceKernelStdioClose()
int putchar(int c)
int fdputs(const char *s, int fd)