utilities for a linked list



Can anyone show me the one or two most basic utilies that would be
needed to manuver a linked list written in C? I have this so far and I
understand it.

struct node{
int data;
struct node *next
};

I don't want any typedefs confusing me either
Sincerely,

Bill
.