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

Class CharStackNode

CPP/Trees/Expression_tree/Stack.h:19–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17
18
19typedef struct CharStackNode {
20 struct CharStackNode* next;
21 char data;
22}CharStackNode;
23typedef CharStackNode* CharStackList;
24
25void initCharStack(CharStackList *list);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected