#ifndef _MESSAGE_H
#define _MESSAGE_H
/**
* tipo del messaggio
*/
typedef struct msg {
long len;
char *str;
} msg_t;
#endif