Functions | |
void | irc_target_get_nick (const char *target, char *nick, size_t size) |
Gets the nick part from the target. | |
void | irc_target_get_host (const char *target, char *nick, size_t size) |
Gets the host part from the target. |
void irc_target_get_host | ( | const char * | target, | |
char * | nick, | |||
size_t | size | |||
) |
Gets the host part from the target.
target | A nick in common IRC server form like tim!root@mydomain.com | |
nick | A buffer to hold the nickname. | |
size | A buffer size. If nick is longer than buffer size, it will be truncated. |
void irc_target_get_nick | ( | const char * | target, | |
char * | nick, | |||
size_t | size | |||
) |
Gets the nick part from the target.
target | A nick in common IRC server form like tim!root@mycomain.com | |
nick | A buffer to hold the nickname. | |
size | A buffer size. If nick is longer than buffer size, it will be truncated. |