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

Function path_tmpdir

src/engine/pathsys.cpp:244–255  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

242 */
243
244string const * path_tmpdir()
245{
246 static string buffer[ 1 ];
247 static int have_result;
248 if ( !have_result )
249 {
250 string_new( buffer );
251 path_get_temp_path_( buffer );
252 have_result = 1;
253 }
254 return buffer;
255}
256
257
258/*

Callers 3

var_getFunction · 0.85
path_tmpfileFunction · 0.85
open_command_fileFunction · 0.85

Calls 2

string_newFunction · 0.85
path_get_temp_path_Function · 0.70

Tested by

no test coverage detected