diff options
| author | Sven Eisenhauer <sven@sven-eisenhauer.net> | 2023-11-10 15:11:48 +0100 |
|---|---|---|
| committer | Sven Eisenhauer <sven@sven-eisenhauer.net> | 2023-11-10 15:11:48 +0100 |
| commit | 33613a85afc4b1481367fbe92a17ee59c240250b (patch) | |
| tree | 670b842326116b376b505ec2263878912fca97e2 /Bachelor/Mikroprozessorsysteme2/mi2/h/ser_io.h | |
| download | Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.gz Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.bz2 | |
Diffstat (limited to 'Bachelor/Mikroprozessorsysteme2/mi2/h/ser_io.h')
| -rw-r--r-- | Bachelor/Mikroprozessorsysteme2/mi2/h/ser_io.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Bachelor/Mikroprozessorsysteme2/mi2/h/ser_io.h b/Bachelor/Mikroprozessorsysteme2/mi2/h/ser_io.h new file mode 100644 index 0000000..8bf3eb5 --- /dev/null +++ b/Bachelor/Mikroprozessorsysteme2/mi2/h/ser_io.h @@ -0,0 +1,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 */ |
