#ifndef _MESSAGE_H_ #define _MESSAGE_H_ typedef struct Request { int bufferIndex; } Request; typedef struct Response { char data; } Response; #endif