| 2194 | */ |
| 2195 | |
| 2196 | static VAR_PARSE * parse_at_file( char const * start, char const * mid, |
| 2197 | char const * end ) |
| 2198 | { |
| 2199 | VAR_PARSE_FILE * result = var_parse_file_new(); |
| 2200 | parse_var_string( start, mid, result->filename ); |
| 2201 | parse_var_string( mid + 3, end, result->contents ); |
| 2202 | return (VAR_PARSE *)result; |
| 2203 | } |
| 2204 | |
| 2205 | /* |
| 2206 | * Given that *s_ points to the character after a "(", parses up to the matching |
no test coverage detected