18 lines
223 B
C
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
|