The R Project SVN R

Rev

Rev 5458 | Rev 6622 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5458 Rev 5510
Line 28... Line 28...
28
 
28
 
29
/* ../main/sort.c : */
29
/* ../main/sort.c : */
30
void	isort(int*,     int);
30
void	isort(int*,     int);
31
void	rsort(double*, int);
31
void	rsort(double*, int);
32
void	csort(complex*, int);
32
void	csort(complex*, int);
-
 
33
void    rsort_with_index(double *, int *, int);
33
void	revsort(double*, int*, int);/* reverse; sort i[] alongside */
34
void	revsort(double*, int*, int);/* reverse; sort i[] alongside */
34
void	iPsort(int*,    int, int);
35
void	iPsort(int*,    int, int);
35
void	rPsort(double*, int, int);
36
void	rPsort(double*, int, int);
36
void	cPsort(complex*, int, int);
37
void	cPsort(complex*, int, int);
37
 
38