#ifndef __INSERTION_SORT__
#define __INSERTION_SORT__

void insertion_sort(double*, int);

#endif

