- Timestamp:
- 2015-02-20T22:50:54Z (8 years ago)
- Branches:
- master
- Children:
- 0b9daac, 3d45471, 7733b8c
- Parents:
- af359b4
- git-author:
- Indent <please@…> (19-02-15 05:47:20)
- git-committer:
- dequis <dx@…> (20-02-15 22:50:54)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
help.h
raf359b4 r5ebff60 1 1 /********************************************************************\ 2 2 * BitlBee -- An IRC to other IM-networks gateway * 3 3 * * … … 27 27 #define _HELP_H 28 28 29 typedef union 30 { 29 typedef union { 31 30 off_t file_offset; 32 31 char *mem_offset; 33 32 } help_off_t; 34 33 35 typedef struct help 36 { 34 typedef struct help { 37 35 int fd; 38 36 time_t mtime; … … 43 41 } help_t; 44 42 45 G_GNUC_MALLOC help_t *help_init( help_t **help, const char *helpfile);46 void help_free( help_t **help);47 char *help_get( help_t **help, char *title);48 int help_add_mem( help_t **help, const char *title, const char *content_);49 char *help_get_whatsnew( help_t **help, int old);43 G_GNUC_MALLOC help_t *help_init(help_t **help, const char *helpfile); 44 void help_free(help_t **help); 45 char *help_get(help_t **help, char *title); 46 int help_add_mem(help_t **help, const char *title, const char *content_); 47 char *help_get_whatsnew(help_t **help, int old); 50 48 51 49 #endif
Note: See TracChangeset
for help on using the changeset viewer.