- Timestamp:
- 2005-12-14T01:17:25Z (19 years ago)
- Branches:
- master
- Children:
- 547f937
- Parents:
- 22bf64e (diff), 568aaf7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
nick.h
r22bf64e r703f0f7 27 27 { 28 28 char *handle; 29 intproto;29 struct prpl *proto; 30 30 char *nick; 31 31 struct __NICK *next; 32 32 } nick_t; 33 33 34 void nick_set( irc_t *irc, const char *handle, intproto, const char *nick );35 char *nick_get( irc_t *irc, const char *handle, intproto, const char *realname );34 void nick_set( irc_t *irc, const char *handle, struct prpl *proto, const char *nick ); 35 char *nick_get( irc_t *irc, const char *handle, struct prpl *proto, const char *realname ); 36 36 void nick_del( irc_t *irc, const char *nick ); 37 37 void nick_strip( char *nick );
Note: See TracChangeset
for help on using the changeset viewer.