Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/boostorg/build
/ stack_pop
Function
stack_pop
src/engine/function.c:259–264 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
257
}
258
259
LIST * stack_pop( STACK * s )
260
{
261
LIST * const result = *(LIST * *)s->data;
262
stack_deallocate( s, sizeof( LIST * ) );
263
return result;
264
}
265
266
LIST * stack_top( STACK * s )
267
{
Callers
6
function_set_actions
Function · 0.85
function_call_rule
Function · 0.85
function_call_member_rule
Function · 0.85
combine_strings
Function · 0.85
argument_list_pop
Function · 0.85
function_run
Function · 0.85
Calls
1
stack_deallocate
Function · 0.85
Tested by
no test coverage detected