/*
 * linklist.h
 *
 * Walter Goodwater
 *
 * CSc 300: Copyright Violations Lab
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

typedef struct Node * Nodeptr;
struct Node
{
  int age;
  char * name;
  Nodeptr next;
};


Nodeptr create( char * name, int age, Nodeptr next );
Nodeptr insert( char * name, int age, Nodeptr header );
Nodeptr delete( char * name, Nodeptr header );
void print( Nodeptr header );