1 2 3 4 5 6 7 8
#ifndef SERIAL_H #define SERIAL_H static int serial_init(void); char read_serial(void); void write_serial(char a); #endif