16 lines
159 B
C
16 lines
159 B
C
|
#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
|