/* * tokenizer.c * * This file contains various routines for splitting an input string into * tokens and returning them in form of a list. The goal is to mimic * perl's split function * * Started 11/23/04 * George * * $Id: tokenizer.c 1414 2007-04-05 02:52:46Z karypis $ * */ #include /************************************************************************ * This function tokenizes a string based on the user-supplied delimiters * list. The resulting tokens are returned into an array of strings. *************************************************************************/ void gk_strtokenize(char *str, char *delim, gk_Tokens_t *tokens) { int i, ntoks, slen; tokens->strbuf = gk_strdup(str); slen = strlen(str); str = tokens->strbuf; /* Scan once to determine the number of tokens */ for (ntoks=0, i=0; intoks = ntoks; tokens->list = (char **)gk_malloc(ntoks*sizeof(char *), "strtokenize: tokens->list"); /* Scan a second time to mark and link the tokens */ for (ntoks=0, i=0; ilist[ntoks++] = str+i; /* Consume all the consecutive characters from the token */ while (ilist, &tokens->strbuf, LTERM); }