/* File: client.h */ #ifndef KR_CLIENT_H #define KR_CLIENT_H /* prototypes for public functions */ void clientInit(void); void clientEnd(void); void clientOutput(message_t message); void clientInput(packet_t packet); void clientTimerInterrupt(void); int clientCanSendMorePkt(void); #endif /* EOF (client.h) */