/*--------------------------------------------------
 header file for function sum_array
   created by smtuttle at Tue Nov 29 14:14:03 PST 2016
--------------------------------------------------*/
#ifndef sum_array_H
#define sum_array_H

#include <string>
using namespace std;

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

#endif