Home
last modified time | relevance | path

Searched refs:esc (Results 1 – 2 of 2) sorted by relevance

/busybox-1.35.0/shell/
Dash.c6241 size_t esc = 0; in esclen() local
6244 esc++; in esclen()
6246 return esc; in esclen()
6950 int esc = 0; in scanright() local
7003 if (--esc < 0) { in scanright()
7004 esc = esclen(startp, loc); in scanright()
7006 if (esc % 2) { in scanright()
7007 esc--; in scanright()
7852 int esc; in expmeta() local
7856 for (p = name; esc = 0, *p; p += esc + 1) { in expmeta()
[all …]
/busybox-1.35.0/miscutils/
Dbc.c5525 static const char esc[] ALIGN1 = "nabfrt""e\\"; in xc_program_printString() local
5529 n = strchr(esc, c); // note: if c is NUL, n = \0 at end of esc in xc_program_printString()
5537 if (n - esc == 0) // "\n" ? in xc_program_printString()
5539 c = "\n\a\b\f\r\t""\\\\""\\"[n - esc]; in xc_program_printString()