Skip to content

Instantly share code, notes, and snippets.

@ibeauregard
Last active April 2, 2021 23:39
Show Gist options
  • Save ibeauregard/56c9656c39f4b3315b2269389501daee to your computer and use it in GitHub Desktop.
Save ibeauregard/56c9656c39f4b3315b2269389501daee to your computer and use it in GitHub Desktop.
/* int_stack.c */
#include "int_stack.h"
static IntStack* new();
const struct int_stack_class IntStackClass = {
.new = &new
};
// ...
// Function declarations
IntStack* new()
{
// Implementation
}
// Function definitions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment