This repository has been archived on 2021-04-17. You can view files and clone it, but cannot push or open issues or pull requests.
uIRC/tests/tokenizer.c

21 lines
424 B
C

#include "../include/uirc.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{
char mesg[513] =
#ifdef UIRC_IRCV3
"@+msgid=1s32;time;+reply;account=x"
#endif
":nick!user@host QUIT arg1 :Finished!";
IRC_Message parseout;
int res = 0;
if ((res = Tok_mesg(mesg, &parseout)) <= 0) {
printf("String could not be tokenized. %i\n", res);
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}