Searched refs:CTLNUL (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dshell.h104 #define CTLNUL '\177' macro
H A Dsyntax.h98 #define CTLNUL '\177' macro
H A Dsubst.h265 #define QUOTED_NULL(string) ((string)[0] == CTLNUL && (string)[1] == '\0')
H A Dmksyntax.c123 else if (i == CTLNUL)
124 return "CTLNUL";
231 addcchar (CTLNUL, CSPECL);
H A Dsubst.c1837 word is not quoted, we just need to quote CTLESC and CTLNUL characters
2929 A string with s[0] == CTLNUL && s[1] == 0 is a quoted null string.
2930 The parser passes CTLNUL as CTLESC CTLNUL. */
2933 used to protect CTLESC and CTLNUL in variable values from the rest of
2959 if (*s == CTLESC || *s == CTLNUL || (quote_spaces && *s == ' '))
2983 /* Inverse of quote_escapes; remove CTLESC protecting CTLESC or CTLNUL.
2985 The parser passes us CTLESC as CTLESC CTLESC and CTLNUL as CTLESC CTLNUL.
2986 This is necessary to make unquoted CTLESC and CTLNUL character
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Dread.c436 if (c == CTLESC || c == CTLNUL)

Completed in 622 milliseconds