aboutsummaryrefslogtreecommitdiffstats
path: root/help.h
diff options
context:
space:
mode:
Diffstat (limited to 'help.h')
-rw-r--r--help.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/help.h b/help.h
index 7b8da39a..5421220c 100644
--- a/help.h
+++ b/help.h
@@ -36,13 +36,14 @@ typedef struct help
{
int fd;
time_t mtime;
- char *string;
+ char *title;
help_off_t offset;
int length;
struct help *next;
} help_t;
-help_t *help_init( help_t **help );
-char *help_get( help_t **help, char *string );
+G_GNUC_MALLOC help_t *help_init( help_t **help, const char *helpfile );
+void help_free( help_t **help );
+char *help_get( help_t **help, char *title );
#endif