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

Function peekChar

CPP/Trees/Expression_tree/Stack.c:88–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86}
87
88char peekChar(CharStackList list) {
89 if(list == NULL)
90 return '\0';
91 return list->data;
92}

Callers 1

convertToPostFixFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected