blob: 7b95595d514294c3c4f4eea4d468f6ea2e7fb8f2 [file] [log] [blame]
/*
* File: io.h
* Purpose: 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