#ifndef List_h #define List_h struct ListNode{ int value; struct ListNode * next; } #endif //List_h