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

Function var_parse_file_new

v2/engine/function.c:1667–1675  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1665 */
1666
1667static VAR_PARSE_FILE * var_parse_file_new( void )
1668{
1669 VAR_PARSE_FILE * const result = (VAR_PARSE_FILE *)BJAM_MALLOC( sizeof(
1670 VAR_PARSE_FILE ) );
1671 result->base.type = VAR_PARSE_TYPE_FILE;
1672 dynamic_array_init( result->filename );
1673 dynamic_array_init( result->contents );
1674 return result;
1675}
1676
1677static void var_parse_file_free( VAR_PARSE_FILE * file )
1678{

Callers 1

parse_at_fileFunction · 0.85

Calls 1

dynamic_array_initFunction · 0.85

Tested by

no test coverage detected