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

Function path_tmpdir

v2/engine/pathsys.c:236–247  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

234 */
235
236string const * path_tmpdir()
237{
238 static string buffer[ 1 ];
239 static int have_result;
240 if ( !have_result )
241 {
242 string_new( buffer );
243 path_get_temp_path_( buffer );
244 have_result = 1;
245 }
246 return buffer;
247}
248
249
250/*

Callers 3

var_getFunction · 0.85
open_command_fileFunction · 0.85
path_tmpfileFunction · 0.85

Calls 2

string_newFunction · 0.85
path_get_temp_path_Function · 0.70

Tested by

no test coverage detected