Changes in nick.h [5b52a48:1eddf6b]
Legend:
- Unmodified
- Added
- Removed
-
nick.h
r5b52a48 r1eddf6b 24 24 */ 25 25 26 void nick_set( account_t *acc, const char *handle, const char *nick ); 27 char *nick_get( account_t *acc, const char *handle, const char *realname ); 28 void nick_del( account_t *acc, const char *handle ); 26 typedef struct __NICK 27 { 28 char *handle; 29 int proto; 30 char *nick; 31 struct __NICK *next; 32 } nick_t; 33 34 void nick_set( irc_t *irc, const char *handle, int proto, const char *nick ); 35 char *nick_get( irc_t *irc, const char *handle, int proto, const char *realname ); 36 void nick_del( irc_t *irc, const char *nick ); 29 37 void nick_strip( char *nick ); 30 38
Note: See TracChangeset
for help on using the changeset viewer.