The R Project SVN R

Rev

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

Rev 6622 Rev 6994
Line 27... Line 27...
27
#include "Complex.h"
27
#include "Complex.h"
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(Rcomplex*, int);
33
void    rsort_with_index(double *, int *, int);
33
void    rsort_with_index(double *, int *, int);
34
void	revsort(double*, int*, int);/* reverse; sort i[] alongside */
34
void	revsort(double*, int*, int);/* reverse; sort i[] alongside */
35
void	iPsort(int*,    int, int);
35
void	iPsort(int*,    int, int);
36
void	rPsort(double*, int, int);
36
void	rPsort(double*, int, int);
37
void	cPsort(complex*, int, int);
37
void	cPsort(Rcomplex*, int, int);
38
 
38
 
39
int	IndexWidth(int);
39
int	IndexWidth(int);
40
int	Rstrlen(char*);
40
int	Rstrlen(char*);
41
char*	R_ExpandFileName(char*);
41
char*	R_ExpandFileName(char*);
42
void	setIVector(int*, int, int);
42
void	setIVector(int*, int, int);