tinymush-2.2.4/conf/
tinymush-2.2.4/scripts/
tinymush-2.2.4/vms/
/* help.h */
#ifndef _help_h
#define _help_h

#ifndef	lint
static char help_RCSid[] = "$Id: help.h,v 1.4 1995/01/19 03:07:08 ambar Exp $";
USE(help_RCSid);
#endif

#define  LINE_SIZE		90

#define  TOPIC_NAME_LEN		30

  typedef struct {
      long pos;			/* index into help file */
      int len;			/* length of help entry */
      char topic[TOPIC_NAME_LEN + 1];	/* topic of help entry */
  }
help_indx;

#endif /* _help_h */