/* Filename:  arrayutl.h

   Programmer:  Br. David Carlson

   Date:  October 4, 1997

   Revised:  June 19, 1999

   Revised:  July 17, 2000

   This is the header file to accompany arrayutl.cpp.
*/

#include <iostream>
using namespace std;


const int Max = 20;

typedef int IntArrayType[Max];


// Function prototypes:

void Print(IntArrayType IntArray, int Count);

void FillArray(IntArrayType IntArray);

void HeapSort(IntArrayType IntArray, int Count);


