mirror of
https://github.com/triqs/dft_tools
synced 2024-11-09 07:33:47 +01:00
8 lines
181 B
C
8 lines
181 B
C
#ifndef __ARGSORT_H__
|
|
#define __ARGSORT_H__
|
|
|
|
void argsort(double *arr, int *inds, double **ptrs, const int n);
|
|
void iargsort(int *iarr, int *inds, int **ptrs, const int n);
|
|
|
|
#endif
|