Files
progettoso/lib/utils/message.h
2022-05-07 23:00:47 +02:00

13 lines
167 B
C

#ifndef _MESSAGE_H
#define _MESSAGE_H
/**
* message structure that get sent from the client
*/
typedef struct msg {
long len;
char *str;
} msg_t;
#endif