Skip to content

Instantly share code, notes, and snippets.

@ibeauregard
Created April 2, 2021 22:23
Show Gist options
  • Save ibeauregard/2fe62eb852a1b8f7896482be4ca5c017 to your computer and use it in GitHub Desktop.
Save ibeauregard/2fe62eb852a1b8f7896482be4ca5c017 to your computer and use it in GitHub Desktop.
/* int_stack.c */
#include "int_stack.h"
// ...
typedef struct int_node IntNode;
struct internals {
IntNode* top;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment