// llist01.h   Linked List of Names and Acct Numbers.
// P. Conrad    04/04/05


#ifndef LLIST01_H
#define LLIST01_H

const int NAME_MAX = 20;
struct Acct_S
{
  int acctNum;
  char name[NAME_MAX];
  Acct_S *next;
};


#endif
