Skip to content

Instantly share code, notes, and snippets.

@shiva
Created September 5, 2011 23:01
Show Gist options
  • Save shiva/1196120 to your computer and use it in GitHub Desktop.
Save shiva/1196120 to your computer and use it in GitHub Desktop.
Example - using a typedef and C structs
typedef struct list_node_s {
void *node;
int key;
} list_node_t;
list_node_t n;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment