Skip to content

Instantly share code, notes, and snippets.

@fabianosalles
Created November 27, 2019 19:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabianosalles/fb4beaee3f78f34c524b5ab1afe893ca to your computer and use it in GitHub Desktop.
Save fabianosalles/fb4beaee3f78f34c524b5ab1afe893ca to your computer and use it in GitHub Desktop.
typedef struct _node {
void *data;
struct _node *next;
} Node;
typedef struct {
int count;
Node *head;
} List;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment