/*--------------------------------------------------
 header file for function smallest
   created by st10 at Thu Dec  1 14:09:29 PST 2016
--------------------------------------------------*/
#ifndef smallest_H
#define smallest_H

#include <string>
using namespace std;

double smallest(double values[], int size);

#endif