Lines Matching defs:wordv
293 wordvprint(FILE *fyle, int wordc, char **wordv)
298 if (wordv[i] != NULL) {
299 fprintf(fyle, "%s%s",sep,wordv[i]);
306 * a wordc wordv combination pointing into it.
312 char **wordv;
324 wordv = Calloc(wordcount + 1, sizeof (char *));
330 wordv[wordindex] = cp;
337 wordv[wordindex] = NULL;
340 printf("Word %d = \"%s\"\n", wordcount, wordv[wordcount]);
344 *r_wordv = wordv;
362 * new wordv, allowing the first emptyhead slots to be empty
365 wordvsplice(int emptyhead, int wordc, char **wordv)
375 nwordv[i] = wordv[i-emptyhead];