Changeset b1f818b for nick.h


Ignore:
Timestamp:
2010-07-11T12:21:59Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
2e0eaac
Parents:
133cdff
Message:

Use bee_user structs in all nick_* functions. Prepare for a nick_get() with
more flexible nickname generation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • nick.h

    r133cdff rb1f818b  
    2424*/
    2525
    26 void nick_set( account_t *acc, const char *handle, const char *nick );
    27 char *nick_get( account_t *acc, const char *handle );
    28 void nick_dedupe( account_t *acc, const char *handle, char nick[MAX_NICK_LENGTH+1] );
    29 int nick_saved( account_t *acc, const char *handle );
    30 void nick_del( account_t *acc, const char *handle );
     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 );
    3133void nick_strip( char *nick );
    3234
Note: See TracChangeset for help on using the changeset viewer.