typedef struct note_data NOTE_DATA;

struct note_data
{
    NOTE_DATA     * next;
    char          * from;
    char          * to;
    char          * subject;
    char          * text;
    int             number;
    long            datestamp;
};

extern NOTE_DATA * note_first;

/* Functions */
void startup_notes      ();
void load_notes         ();
void save_notes         ();
void clear_note         (D_MOBILE * ch);
void cmd_note           (D_M * ch, char *arg);