#ifndef __INSERTION_SORT_H__ 
#define __INSERTION_SORT_H__ 1

int insertion_sort(double*, int);
int insertion_sort_random(double *A, int n);

#endif
