diff options
Diffstat (limited to 'help.h')
-rw-r--r-- | help.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 |