Files
progettoso/lib/utils/message.h

13 lines
138 B
C
Raw Normal View History

#ifndef _MESSAGE_H
#define _MESSAGE_H
/**
* tipo del messaggio
*/
typedef struct msg {
2022-04-24 01:36:43 +02:00
long len;
char *str;
} msg_t;
#endif