mirror of
https://github.com/triqs/dft_tools
synced 2024-11-07 06:33:48 +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
|