13 lines
137 B
C
13 lines
137 B
C
|
|
#ifndef _MESSAGE_H
|
||
|
|
#define _MESSAGE_H
|
||
|
|
|
||
|
|
/**
|
||
|
|
* tipo del messaggio
|
||
|
|
*/
|
||
|
|
typedef struct msg {
|
||
|
|
int len;
|
||
|
|
char *str;
|
||
|
|
} msg_t;
|
||
|
|
|
||
|
|
#endif
|