File src/engine/parsing.c changed (mode: 100644) (index f19e2e394..9963de7bc) |
... |
... |
parse_doubly_quoted_string(parse_context_t *ctx, const char **in) |
1076 |
1076 |
/* dqchar ::= [^"\] | '\' dqesc |
/* dqchar ::= [^"\] | '\' dqesc |
1077 |
1077 |
* dqesc ::= '\\' | '\0' | '\b' | '\e' | '\n' | '\r' | '\t' | dqbn |
* dqesc ::= '\\' | '\0' | '\b' | '\e' | '\n' | '\r' | '\t' | dqbn |
1078 |
1078 |
* Returns non-zero if there are more characters in the string. */ |
* Returns non-zero if there are more characters in the string. */ |
1079 |
|
int |
|
|
1079 |
|
static int |
1080 |
1080 |
parse_doubly_quoted_char(parse_context_t *ctx, const char **in, sbuffer *sbuf) |
parse_doubly_quoted_char(parse_context_t *ctx, const char **in, sbuffer *sbuf) |
1081 |
1081 |
{ |
{ |
1082 |
1082 |
/* |
/* |