diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2007-06-04 14:22:05 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2007-06-04 14:22:05 +0100 |
commit | d06eabf19ec3f849d8bab22c13d43e4eba9a48ee (patch) | |
tree | 0528ff030b32b1de53967641ce29f44653286012 /nick.h | |
parent | 54f2f55f983f4b6bb8a58772bbd1137580e3307f (diff) |
Added imcb_buddy_nick_hint so the Jabber conference module can suggest sane
nicknames for chatroom participants. There'll probably be a lot of
underscores now, but this is by far the cleanest way to implement this, I
think. At least now whispers will work properly. Also using this function
call to set names for ICQ contacts in a slightly saner way.
Diffstat (limited to 'nick.h')
-rw-r--r-- | nick.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -25,6 +25,7 @@ void nick_set( account_t *acc, const char *handle, const char *nick ); char *nick_get( account_t *acc, const char *handle ); +void nick_dedupe( account_t *acc, const char *handle, char nick[MAX_NICK_LENGTH+1] ); int nick_saved( account_t *acc, const char *handle ); void nick_del( account_t *acc, const char *handle ); void nick_strip( char *nick ); |