#ifndef _CLOCK_H #define _CLOCK_H struct time { u8 second; u8 minute; u8 hour; u8 day; u8 wday; u8 month; u8 year; }; extern struct time time; void display_date(void); void display_time(void); void clock( void ); #endif /* _CLOCK_H */