Changeset 5ebff60 for query.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
  • query.h

    raf359b4 r5ebff60  
    1   /********************************************************************\
     1/********************************************************************\
    22  * BitlBee -- An IRC to other IM-networks gateway                     *
    33  *                                                                    *
     
    2727#define _QUERY_H
    2828
    29 typedef void (*query_callback) ( void *data );
     29typedef void (*query_callback) (void *data);
    3030
    31 typedef struct query
    32 {
     31typedef struct query {
    3332        struct im_connection *ic;
    3433        char *question;
     
    3837} query_t;
    3938
    40 query_t *query_add( irc_t *irc, struct im_connection *ic, char *question,
    41                     query_callback yes, query_callback no, query_callback free,
    42                     void *data );
    43 void query_del( irc_t *irc, query_t *q );
    44 void query_del_by_conn( irc_t *irc, struct im_connection *ic );
    45 void query_answer( irc_t *irc, query_t *q, int ans );
     39query_t *query_add(irc_t *irc, struct im_connection *ic, char *question,
     40                   query_callback yes, query_callback no, query_callback free,
     41                   void *data);
     42void query_del(irc_t *irc, query_t *q);
     43void query_del_by_conn(irc_t *irc, struct im_connection *ic);
     44void query_answer(irc_t *irc, query_t *q, int ans);
    4645
    4746#endif
Note: See TracChangeset for help on using the changeset viewer.