Files
C-RK/C-RK/C-RK-Week2/llist.h
T
2016-02-17 12:11:54 +01:00

18 lines
223 B
C

#ifndef LLIST_DEF
#define LLIST_DEF
struct node
{
int data;
struct node *next;
struct node *previous;
};
void init();
int add(int data, int begin);
int addPos(int data, int positie);
void show();
void clear();
#endif