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

Function yyfdone

src/engine/scan.c:110–120  ·  view source on GitHub ↗

* yyfdone() - cleanup after we're done parsing a file. */

Source from the content-addressed store, hash-verified

108 * yyfdone() - cleanup after we're done parsing a file.
109 */
110void yyfdone( void )
111{
112 include * const i = incp;
113 incp = i->next;
114
115 /* Close file, free name. */
116 if(i->file && (i->file != stdin))
117 fclose(i->file);
118 object_free(i->fname);
119 BJAM_FREE((char *)i);
120}
121
122
123/*

Callers 1

parse_fileFunction · 0.85

Calls 1

object_freeFunction · 0.85

Tested by

no test coverage detected