Advertisement
alexcarrega

Single Linked List in C

Aug 31st, 2012
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. struct node_t {
  2.     void *data;
  3.     struct node_t *next;
  4. };
  5.  
  6. typedef struct node_t node_t;
  7.  
  8. struct list_t {
  9.     node_t *top;
  10. }
  11.  
  12. typedef struct list_t list_t;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement