Loading src/list.h +0 −5 Original line number Diff line number Diff line #ifndef __LIST__ #define __LIST__ struct cell_t { void* val; unsigned long int id; struct cell_t* next; }; typedef struct cell_t* list_t; Loading tests/list_tests.c→tests/list.c +0 −0 File moved. View file Loading
src/list.h +0 −5 Original line number Diff line number Diff line #ifndef __LIST__ #define __LIST__ struct cell_t { void* val; unsigned long int id; struct cell_t* next; }; typedef struct cell_t* list_t; Loading