Home
last modified time | relevance | path

Searched refs:eol (Results 1 – 8 of 8) sorted by relevance

/busybox-1.35.0/coreutils/
Dshuf.c78 char eol; in shuf_main() local
163 eol = '\n'; in shuf_main()
165 eol = '\0'; in shuf_main()
169 printf("%llu%c", lo + (uintptr_t)lines[i], eol); in shuf_main()
171 printf("%s%c", lines[i], eol); in shuf_main()
Duniq.c49 char eol; in uniq_main() local
92 eol = (opt & OPT_z) ? 0 : '\n'; in uniq_main()
134 printf("%s%c", old_line, eol); in uniq_main()
/busybox-1.35.0/shell/hush_test/hush-glob/
Dglob2.tests2 # \z -> \\\z; \<eol> -> \\<eol> (for any z, special or not),
/busybox-1.35.0/shell/ash_test/ash-glob/
Dglob2.tests2 # \z -> \\\z; \<eol> -> \\<eol> (for any z, special or not),
/busybox-1.35.0/scripts/kconfig/
Dkxgettext.c17 int eol = 0; in escape() local
21 eol = 1; in escape()
51 if (multiline && eol) in escape()
Dlex.zconf.c_shipped1008 /* rule 1 can match eol */
1010 /* rule 2 can match eol */
1056 /* rule 8 can match eol */
1102 /* rule 17 can match eol */
1128 /* rule 21 can match eol */
1143 /* rule 23 can match eol */
1161 /* rule 25 can match eol */
1190 /* rule 28 can match eol */
1231 /* rule 30 can match eol */
1243 /* rule 31 can match eol */
/busybox-1.35.0/editors/
Dsed.c375 const char *eol; in parse_file_cmd() local
379 eol = strchrnul(start, '\n'); in parse_file_cmd()
380 if (eol == start) in parse_file_cmd()
383 if (*eol) { in parse_file_cmd()
385 *retval = xstrndup(start, eol-start + 1); in parse_file_cmd()
386 (*retval)[eol-start] = '\\'; in parse_file_cmd()
392 return eol - filecmdstr; in parse_file_cmd()
1474 char *sv, *eol; in add_cmd_block() local
1478 eol = strchr(cmdstr, '\n'); in add_cmd_block()
1479 if (eol) in add_cmd_block()
[all …]
/busybox-1.35.0/loginutils/
Dgetty.c106 unsigned char eol; /* end-of-line char seen (CR or NL) */ member
337 if (G.eol == '\r') { in finalize_tty_attrs()
495 G.eol = c; in get_logname()
561 G.eol = '\r'; in getty_main()