| 2143 | */ |
| 2144 | |
| 2145 | static VAR_PARSE * parse_at_file( char const * start, char const * mid, |
| 2146 | char const * end ) |
| 2147 | { |
| 2148 | VAR_PARSE_FILE * result = var_parse_file_new(); |
| 2149 | parse_var_string( start, mid, result->filename ); |
| 2150 | parse_var_string( mid + 3, end, result->contents ); |
| 2151 | return (VAR_PARSE *)result; |
| 2152 | } |
| 2153 | |
| 2154 | /* |
| 2155 | * Given that *s_ points to the character after a "(", parses up to the matching |
no test coverage detected