Commit aa493e66 authored by Thomas Lemartinel's avatar Thomas Lemartinel
Browse files

Update tests/list.c, src/list.h

parent 6fcaad20
Loading
Loading
Loading
Loading
+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;

+0 −0

File moved.