/busybox-1.35.0/coreutils/ |
D | paste.c | 38 char delim; in paste_files() local 58 delim = '\n'; in paste_files() 60 delim = delims[del_idx++]; in paste_files() 64 if (delim != '\0') in paste_files() 65 fputc(delim, stdout); in paste_files() 73 char delim; in paste_files_separate() local 84 delim = delims[del_idx++]; in paste_files_separate() 87 if (delim != '\0') in paste_files_separate() 88 fputc(delim, stdout); in paste_files_separate()
|
D | cut.c | 88 static void cut_file(FILE *file, const char *delim, const char *odelim, in cut_file() argument 96 if (shoe) xregcomp(®, delim, REG_EXTENDED); in cut_file() 121 } else if (*delim == '\n') { /* cut by lines */ in cut_file() 185 } else if (line[end = uu++] != *delim) in cut_file() 217 const char *delim = NULL; in cut_main() local 225 &sopt, &sopt, &sopt, &delim, &odelim IF_FEATURE_CUT_REGEX(, &sopt) in cut_main() 227 if (!delim || !*delim) in cut_main() 228 delim = (opt & CUT_OPT_REGEX_FLGS) ? "[[:space:]]+" : "\t"; in cut_main() 229 if (!odelim) odelim = (opt & CUT_OPT_REGEX_FLGS) ? " " : delim; in cut_main() 325 cut_file(file, delim, odelim, cut_lists, nlists); in cut_main()
|
/busybox-1.35.0/util-linux/ |
D | taskset.c | 171 const char *delim; in print_cpulist() local 176 delim = ""; in print_cpulist() 182 printf("%s%u", delim, pos); in print_cpulist() 195 delim = ","; in print_cpulist()
|
/busybox-1.35.0/libbb/ |
D | platform.c | 133 char* FAST_FUNC strsep(char **stringp, const char *delim) in strsep() argument 141 if (!*delim) in strsep() 144 ptr = strpbrk(start, delim); in strsep()
|
/busybox-1.35.0/shell/ |
D | shell_common.c | 45 char delim; in shell_builtin_read() local 172 delim = params->opt_d ? params->opt_d[0] : '\n'; in shell_builtin_read() 224 if (c == delim) /* '\n' or -d CHAR */ in shell_builtin_read()
|
/busybox-1.35.0/modutils/ |
D | modutils.h | 51 int string_to_llist(char *string, llist_t **llist, const char *delim) FAST_FUNC;
|
D | modutils.c | 78 int FAST_FUNC string_to_llist(char *string, llist_t **llist, const char *delim) in string_to_llist() argument 83 while ((tok = strsep(&string, delim)) != NULL) { in string_to_llist()
|
/busybox-1.35.0/editors/ |
D | ed.c | 616 int delim, oldLen, newLen, deltaLen, offset; in subCommand() local 639 delim = *cp++; in subCommand() 642 cp = strchr(cp, delim); in subCommand() 651 cp = strchr(cp, delim); in subCommand()
|
/busybox-1.35.0/findutils/ |
D | grep.c | 287 int delim = (NUL_DELIMITED ? '\0' : '\n'); in bb_getline() local 289 res_sz = getdelim(line_ptr, line_alloc_len, delim, file); in bb_getline() 293 if (line[res_sz - 1] == delim) in bb_getline()
|
/busybox-1.35.0/networking/udhcp/ |
D | common.c | 694 char delim = val[0]; in udhcp_str2optset() local 695 char *end = last_char_is(val + 1, delim); in udhcp_str2optset()
|
/busybox-1.35.0/include/ |
D | platform.h | 615 extern char *strsep(char **stringp, const char *delim) FAST_FUNC;
|
/busybox-1.35.0/docs/ |
D | posix_conformance.txt | 147 -d delim | yes | yes |
|