diff options
Diffstat (limited to 'irc_parse.h')
-rw-r--r-- | irc_parse.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/irc_parse.h b/irc_parse.h index 4933f43..6366064 100644 --- a/irc_parse.h +++ b/irc_parse.h @@ -41,6 +41,8 @@ int token_cmp(irc_token *tk, int idx, char *str); char* token_new_str(irc_token *tk, int idx); //number of tokens int token_len(irc_token *tk); +//create new instance of token structure +irc_token* token_cpy_new(irc_token *tk); //clean all tokens void token_destroy(irc_token *tk); |