// librarySort.h   Demo of the C library qsort routine
// P. Conrad for CISC220 06J

// NOTE: for details of the qsort library routine,
// use "man -s 3c qsort" on strauss

#ifndef LIBRARYSORT_H
#define LIBRARYSORT_H

void sortArray(int a[], int n);

#endif




