One Directional Bi Linked List
Tests
home top contents previous up next

typedef struct {
  void* next;
  char* data; //Made only for test purposes.
  void* random;
} NBList;              

NBList* do_copy( NBList* entry );
NBList* create(char** data);


Copyright (C) 2009 Konstantin Kirillov