This output from "diff clientList.cpp listA.cpp"
shows the differences between the two files.
Lines of clientList.cpp are preceded with the
"<" and lines of listA.cpp are preceded with the
">"

2c2
< // Implementation file listA.cpp for the ADT list.
---
> // Implementation file clientList.cpp for the ADT list.
5c5
< #include "listA.h"  // header file
---
> #include "clientList.h"  // header file
7c7
< listClass::listClass() : Size(0)
---
> clientListClass::clientListClass() : Size(0)
11c11
< bool listClass::ListIsEmpty() const
---
> bool clientListClass::ListIsEmpty() const
16c16
< int listClass::ListLength() const
---
> int clientListClass::ListLength() const
21,22c21,22
< void listClass::ListInsert(int NewPosition,
<                            listItemType NewItem,
---
> void clientListClass::ListInsert(int NewPosition,
>                            cListItemType NewItem,
27c27
<                    (Size < MAX_LIST) );
---
>                    (Size < MAX_CLIST) );
44c44
< void listClass::ListDelete(int Position, bool& Success)
---
> void clientListClass::ListDelete(int Position, bool& Success)
61,62c61,62
< void listClass::ListRetrieve(int Position,
<                              listItemType& DataItem, 
---
> void clientListClass::ListRetrieve(int Position,
>                              cListItemType& DataItem, 
73c73
< int listClass::Index(int Position) const
---
> int clientListClass::Index(int Position) const