PS2SDK
PS2 Homebrew Libraries
tty.h
Go to the documentation of this file.
1 /*
2 # _____ ___ ____ ___ ____
3 # ____| | ____| | | |____|
4 # | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
5 #-----------------------------------------------------------------------
6 # Licenced under Academic Free License version 2.0
7 # Review ps2sdk README & LICENSE files for further details.
8 */
9 
15 #ifndef TTY_H_
16 #define TTY_H_
17 
18 extern int ttyinit;
19 
20 int sceTtyInit();
21 int sceTtyWrite(const char *buf, int len);
22 int sceTtyRead(char *buf, int len);
23 
24 #endif // TTY_H_