#ifndef _HELP_H_8548b1e4_ #define _HELP_H_8548b1e4_ #define LINE_SIZE 90 #define TOPIC_NAME_LEN 30 #define HELP_TOPIC_MARK "&&&" typedef struct { long int pos; int len; } help_filepart; typedef struct { help_filepart loc; char topic[TOPIC_NAME_LEN+1]; /* topic of help entry */ } help_indx; #endif