// llist01.cc
// functions for working with a linked list

#include "llist01.h"

#include <iostream>
using namespace std;

void printLinkedListOnCout(Acct_S *head)
{
  for (Acct_S *p=head; p; p=p->next)
    cout << p->acctNum << "\t" << p->name << endl;

  return;
}
