Searched refs:we_wordv (Results 1 – 3 of 3) sorted by relevance
76 assert(strcmp(we.we_wordv[0], "hello") == 0); in main()77 assert(strcmp(we.we_wordv[1], "world") == 0); in main()78 assert(we.we_wordv[2] == NULL); in main()87 assert(we.we_wordv[10000] == NULL); in main()95 assert(we.we_wordv[0] == NULL); in main()96 assert(we.we_wordv[1] == NULL); in main()97 assert(we.we_wordv[2] == NULL); in main()98 assert(strcmp(we.we_wordv[3], "hello") == 0); in main()99 assert(strcmp(we.we_wordv[4], "world") == 0); in main()100 assert(we.we_wordv[5] == NULL); in main()[all …]
63 we->we_wordv = NULL; in wordexp()185 if ((nwv = realloc(we->we_wordv, (we->we_wordc + 1 + in we_askshell()191 we->we_wordv = nwv; in we_askshell()197 if (we->we_wordv[i] != NULL) in we_askshell()198 we->we_wordv[i] += nstrings - we->we_strings; in we_askshell()227 we->we_wordv[vofs++] = NULL; in we_askshell()230 we->we_wordv[vofs++] = p; in we_askshell()236 we->we_wordv[vofs] = NULL; in we_askshell()339 free(we->we_wordv); in wordfree()341 we->we_wordv = NULL; in wordfree()
42 char **we_wordv; /* pointer to list of words */ member