Advertisement
Guest User

Untitled

a guest
Sep 13th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. struct list_s {
  2. void* list_data_p;
  3. struct list_s* previous;
  4. struct list_s* next;
  5. static struct list_s* head;
  6. static struct list_s* tail;
  7. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement