#ifndef I_NOTIFY
#define I_NOTIFY

typedef struct notify_node *notify_ptr;
struct notify_node {
  char nick[MAXNICKLEN];
  int present;
  struct notify_node *next;
};

#endif
