Update links to plot_image.py.
[parallel_computing.git] / src / sorting / sort.h
1 #ifndef sort_h
2 #define sort_h
3
4 /* sort a list `list` of `list_size` elements in place. */
5 void sort(int list_size, double *list);
6
7 #endif                          /* sort_h */