Changeset 5ebff60 for help.h


Ignore:
Timestamp:
2015-02-20T22:50:54Z (9 years ago)
Author:
dequis <dx@…>
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)
Message:

Reindent everything to K&R style with tabs

Used uncrustify, with the configuration file in ./doc/uncrustify.cfg

Commit author set to "Indent <please@…>" so that it's easier to
skip while doing git blame.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • help.h

    raf359b4 r5ebff60  
    1   /********************************************************************\
     1/********************************************************************\
    22  * BitlBee -- An IRC to other IM-networks gateway                     *
    33  *                                                                    *
     
    2727#define _HELP_H
    2828
    29 typedef union
    30 {
     29typedef union {
    3130        off_t file_offset;
    3231        char *mem_offset;
    3332} help_off_t;
    3433
    35 typedef struct help
    36 {
     34typedef struct help {
    3735        int fd;
    3836        time_t mtime;
     
    4341} help_t;
    4442
    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 );
     43G_GNUC_MALLOC help_t *help_init(help_t **help, const char *helpfile);
     44void help_free(help_t **help);
     45char *help_get(help_t **help, char *title);
     46int help_add_mem(help_t **help, const char *title, const char *content_);
     47char *help_get_whatsnew(help_t **help, int old);
    5048
    5149#endif
Note: See TracChangeset for help on using the changeset viewer.