ps2rom/rom/shared/sio.h

16 lines
159 B
C
Raw Normal View History

#ifndef SIO_H
#define SIO_H
#ifdef __cplusplus
extern "C" {
#endif
void SIO_putc(char c);
void SIO_puts(const char* s);
#ifdef __cplusplus
}
#endif
#endif