Lines Matching refs:separator
270 char **strv_split(const char *s, const char *separator) {
279 FOREACH_WORD_SEPARATOR(word, l, s, separator, state)
287 FOREACH_WORD_SEPARATOR(word, l, s, separator, state) {
362 char *strv_join(char **l, const char *separator) {
367 if (!separator)
368 separator = " ";
370 k = strlen(separator);
386 e = stpcpy(e, separator);
404 * separator and quotes.
874 int fputstrv(FILE *f, char **l, const char *separator, bool *space) {
885 r = fputs_with_space(f, *s, separator, space);