MCPcopy Create free account
hub / github.com/boostorg/build / parse_at_file

Function parse_at_file

src/engine/function.c:2196–2203  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2194 */
2195
2196static 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

Callers 1

try_parse_variableFunction · 0.85

Calls 2

var_parse_file_newFunction · 0.85
parse_var_stringFunction · 0.85

Tested by

no test coverage detected