Committing all of my little comment syntax changes and getting them out of the way...
[citadel.git] / libcitadel / tests / token_test.c
1
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <string.h>
5 #include <libcitadel.h>
6
7
8 int main(int argc, char **argv) {
9         StrBuf *setstr;
10         StrBuf *lostr;
11         StrBuf *histr;
12         StrBuf *vset;
13         const char *pvset;
14         int i = 0;
15
16         // char *teststring = "40:24524,24662,24673,27869:27935,28393,28426,31247:31258,31731,31749,31761,31778,31782,31801:31803,31813,31904,31915,33708,33935,34619,34672,34720:34723,34766,34835,37594,38854,39235,39942,40030,40142,40520,40815,40907,41201,41578,41781,41954,42292,43110,43565,43801,43998,44180,44241,44295,44401,44561,44635,44798,44861,44946,45022,45137:45148,45166,45179,45707,47114,47141:47157,47194,47314,47349,47386,47489,47496,47534:47543,54460,54601,54637:54652";
17         char *teststring = "one,two,three";
18         setstr = NewStrBuf();
19         vset = NewStrBufPlain(teststring, -1);
20
21         while (StrBufExtract_NextToken(setstr, vset, &pvset, ',')) {
22                 printf("Token: '%s'\n", ChrPtr(setstr));
23         }
24
25         exit(0);
26 }