pcsx2/fps2bios/kernel/iopload/include/kstdio.h
Jake.Stine 6ebfae8ef1 Re-Added eol-style:native properties to the repository. The settings got lost when we merged from Playground to Official.
Added interface.cpp (plugin/pcsx2 interface) and savestate.cpp to SPU2ghz, to help clean up SPU2.cpp.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@463 96395faa-99c1-11dd-bbfe-3dabce05a288
2009-02-09 21:15:56 +00:00

21 lines
511 B
C

#ifndef __STDIO_H__
#define __STDIO_H__
#define STDIO_VER 0x102
#define TAB 0x9 //\t
#define LF 0x10 //\n
#define CR 0x13 //\r
void printf(const char *format, ...); // 4(21,25,26)
int getchar(); // 5
//int putchar(int c); // 6
int puts(char *s); // 7
char *gets(char *s); // 8
int fdprintf(int fd, const char *format, ...); // 9
int fdgetc(int fd); //10
int fdputc(int c, int fd); //11
int fdputs(char *s, int fd); //12
char *fdgets(char *buf, int fd); //13
#endif//__STDIO_H__