The R Project SVN R

Rev

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

Rev 5458 Rev 6994
Line 34... Line 34...
34
 
34
 
35
/* Computation of printing formats */
35
/* Computation of printing formats */
36
void formatLogical(int*,int,int*);
36
void formatLogical(int*,int,int*);
37
void formatInteger(int*,int,int*);
37
void formatInteger(int*,int,int*);
38
void formatReal(double*, int, int*, int*, int*);
38
void formatReal(double*, int, int*, int*, int*);
39
void formatComplex(complex*, int, int*, int*, int*, int*, int*, int*);
39
void formatComplex(Rcomplex*, int, int*, int*, int*, int*, int*, int*);
40
 
40
 
41
long Decode2Long(char *p, int *ierr);
41
long Decode2Long(char *p, int *ierr);
42
/* Formating of values */
42
/* Formating of values */
43
char *EncodeLogical(int, int);
43
char *EncodeLogical(int, int);
44
char *EncodeInteger(int, int);
44
char *EncodeInteger(int, int);
45
char *EncodeReal(double, int, int, int);
45
char *EncodeReal(double, int, int, int);
46
char *EncodeComplex(complex, int, int, int, int, int, int);
46
char *EncodeComplex(Rcomplex, int, int, int, int, int, int);
47
char *EncodeString(char*, int, int, int);
47
char *EncodeString(char*, int, int, int);
48
 
48
 
49
/* Printing */
49
/* Printing */
50
void VectorIndex(int, int);
50
void VectorIndex(int, int);
51
 
51
 
52
void printIntegerVector(int *x,	   int n, int index);
52
void printIntegerVector(int *x,	   int n, int index);
53
void printRealVector   (double *x, int n, int index);
53
void printRealVector   (double *x, int n, int index);
54
void printComplexVector(complex *x,int n, int index);
54
void printComplexVector(Rcomplex *x,int n, int index);
55
 
55
 
56
char *Rsprintf(char*, ...);
56
char *Rsprintf(char*, ...);
57
void Rprintf(char*, ...);
57
void Rprintf(char*, ...);
58
void REprintf(char*, ...);
58
void REprintf(char*, ...);
59
void Rvprintf(const char*, va_list);
59
void Rvprintf(const char*, va_list);