Please send questions to st10@humboldt.edu .
/*--------------------------------------------------
 header file for function sum_array
   created by smtuttle at Fri Nov  5 08:44:18 PDT 2010
--------------------------------------------------*/
#ifndef sum_array_H
#define sum_array_H

#include <string>
using namespace std;

double sum_array(double values[], int num_values);

#endif