OurOS 0.1
Operating System built by McGill Students
 
Loading...
Searching...
No Matches
io.h
1#ifndef IO_H
2#define IO_H
3
4typedef void (*putchar) (char);
5typedef char (*getchar) (void);
6
7void putchars(putchar, const char*);
8
9#endif