Home | History | Annotate | Download | only in make

Lines Matching defs:words

59 /* The result of splitting a string into words. */
60 typedef struct Words {
61 char **words;
64 } Words;
66 /* The result of splitting a string into words. */
68 Substring *words;
302 Words Str_Words(const char *, bool);
305 Words_Free(Words w)
307 free(w.words);
317 w->words = NULL;
325 free(w.words);