arduino_midi_player/Midi/music-box-nv32-master/nv32lib/common/io.h
2025-03-24 14:30:56 +08:00

31 lines
541 B
C

/******************************************************************************
*
* @brief provide serial Input/Output routines.
*
*******************************************************************************/
#ifndef _IO_H
#define _IO_H
/********************************************************************/
char
in_char(void);
void
out_char(char);
int
char_present(void);
int
printf(const char *, ... );
int
sprintf(char *, const char *, ... );
/********************************************************************/
#endif