Lines Matching refs:word
91 char *first_word(const char *s, const char *word) _pure_;
95 #define FOREACH_WORD(word, length, s, state) \
96 _FOREACH_WORD(word, length, s, WHITESPACE, false, state)
98 #define FOREACH_WORD_SEPARATOR(word, length, s, separator, state) \
99 _FOREACH_WORD(word, length, s, separator, false, state)
101 #define FOREACH_WORD_QUOTED(word, length, s, state) \
102 _FOREACH_WORD(word, length, s, WHITESPACE, true, state)
104 #define _FOREACH_WORD(word, length, s, separator, quoted, state) \
105 for ((state) = (s), (word) = split(&(state), &(length), (separator), (quoted)); (word); (word) = split(&(state), &(length), (separator), (quoted)))