MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / peek

Function peek

CPP/Trees/Expression_tree/Stack.c:42–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40}
41
42void* peek(StackList list) {
43 if(list == NULL)
44 return NULL;
45 return list->data;
46}
47
48
49

Callers 1

initTreeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected