Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/DescentDevelopers/Descent3
/ push
Method
push
Descent3/bnode.cpp:139–142 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
137
bpq() { q_head = NULL; }
138
139
void push(pq_item *new_node) {
140
new_node->next = q_head;
141
q_head = new_node;
142
}
143
144
pq_item *pop() {
145
pq_item *cur_item = q_head;
Callers
1
BNode_FindPath
Function · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected