Files
progettoso/lib/utils/message.h

13 lines
167 B
C
Raw Normal View History

#ifndef _MESSAGE_H
#define _MESSAGE_H
/**
2022-05-07 23:00:47 +02:00
* message structure that get sent from the client
*/
typedef struct msg {
2022-04-24 01:36:43 +02:00
long len;
char *str;
} msg_t;
#endif