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

    raf359b4 r5ebff60  
    1   /********************************************************************\
     1/********************************************************************\
    22  * BitlBee -- An IRC to other IM-networks gateway                     *
    33  *                                                                    *
     
    2424*/
    2525
    26 void nick_set_raw( account_t *acc, const char *handle, const char *nick );
    27 void nick_set( bee_user_t *bu, const char *nick );
    28 char *nick_get( bee_user_t *bu );
    29 char *nick_gen( bee_user_t *bu );
    30 void nick_dedupe( bee_user_t *bu, char nick[MAX_NICK_LENGTH+1] );
    31 int nick_saved( bee_user_t *bu );
    32 void nick_del( bee_user_t *bu );
     26void nick_set_raw(account_t *acc, const char *handle, const char *nick);
     27void nick_set(bee_user_t *bu, const char *nick);
     28char *nick_get(bee_user_t *bu);
     29char *nick_gen(bee_user_t *bu);
     30void nick_dedupe(bee_user_t * bu, char nick[MAX_NICK_LENGTH + 1]);
     31int nick_saved(bee_user_t *bu);
     32void nick_del(bee_user_t *bu);
    3333
    34 void nick_strip( irc_t *irc, char *nick );
    35 gboolean nick_ok( irc_t *irc, const char *nick );
    36 int nick_lc( irc_t *irc, char *nick );
    37 int nick_uc( irc_t *irc, char *nick );
    38 int nick_cmp( irc_t *irc, const char *a, const char *b );
    39 char *nick_dup( const char *nick );
     34void nick_strip(irc_t *irc, char *nick);
     35gboolean nick_ok(irc_t *irc, const char *nick);
     36int nick_lc(irc_t *irc, char *nick);
     37int nick_uc(irc_t *irc, char *nick);
     38int nick_cmp(irc_t *irc, const char *a, const char *b);
     39char *nick_dup(const char *nick);
Note: See TracChangeset for help on using the changeset viewer.