Skip to content

Instantly share code, notes, and snippets.

@ibeauregard
Created April 2, 2021 21:31
Show Gist options
  • Save ibeauregard/765781e33ca4a859169d2351f5b742d6 to your computer and use it in GitHub Desktop.
Save ibeauregard/765781e33ca4a859169d2351f5b742d6 to your computer and use it in GitHub Desktop.
/* int_stack.h */
typedef struct int_stack IntStack;
typedef struct int_node IntNode;
struct int_stack {
IntNode* top;
// All function pointers
}
IntStack* new_stack();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment