summaryrefslogtreecommitdiffstats
path: root/Bachelor/Mikroprozessorsysteme2/mi2/h/ser_io.h
blob: 8bf3eb53fb8630b34661903de41bd6bd398f894b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//*----------------------------------------------------------------------------
//* File Name           : ser_io.h
//* Object              : Standard C Header File
//*
//* 1.0 27/10/02 GR     : Creation
//*----------------------------------------------------------------------------

#ifndef ser_io_h
#define ser_io_h

void putchar(int);
unsigned char getchar(void);
void init_ser(void);
void puts(char*);
unsigned int gets(char*,int);
unsigned int getpw(char*,int);

#endif /* ser_io_h */