The R Project SVN R

Rev

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

Rev 76724 Rev 76734
Line 54... Line 54...
54
/* Computation of printing formats */
54
/* Computation of printing formats */
55
void formatLogical(const int *, R_xlen_t, int *);
55
void formatLogical(const int *, R_xlen_t, int *);
56
void formatInteger(const int *, R_xlen_t, int *);
56
void formatInteger(const int *, R_xlen_t, int *);
57
void formatReal(const double *, R_xlen_t, int *, int *, int *, int);
57
void formatReal(const double *, R_xlen_t, int *, int *, int *, int);
58
void formatComplex(const Rcomplex *, R_xlen_t, int *, int *, int *, int *, int *, int *, int);
58
void formatComplex(const Rcomplex *, R_xlen_t, int *, int *, int *, int *, int *, int *, int);
-
 
59
void formatLogicalS(SEXP, R_xlen_t, int *);
-
 
60
void formatIntegerS(SEXP, R_xlen_t, int *);
-
 
61
void formatRealS(SEXP, R_xlen_t, int *, int *, int *, int);
-
 
62
void formatComplexS(SEXP, R_xlen_t, int *, int *, int *, int *, int *, int *, int);
59
 
63
 
60
/* Formating of values */
64
/* Formating of values */
61
const char *EncodeLogical(int, int);
65
const char *EncodeLogical(int, int);
62
const char *EncodeInteger(int, int);
66
const char *EncodeInteger(int, int);
63
const char *EncodeReal0(double, int, int, int, const char *);
67
const char *EncodeReal0(double, int, int, int, const char *);
Line 73... Line 77...
73
 
77
 
74
//void printLogicalVector(int *, R_xlen_t, int);
78
//void printLogicalVector(int *, R_xlen_t, int);
75
void printIntegerVector(const int *, R_xlen_t, int);
79
void printIntegerVector(const int *, R_xlen_t, int);
76
void printRealVector   (const double *, R_xlen_t, int);
80
void printRealVector   (const double *, R_xlen_t, int);
77
void printComplexVector(const Rcomplex *, R_xlen_t, int);
81
void printComplexVector(const Rcomplex *, R_xlen_t, int);
-
 
82
void printIntegerVectorS(SEXP, R_xlen_t, int);
-
 
83
void printRealVectorS   (SEXP, R_xlen_t, int);
-
 
84
void printComplexVectorS(SEXP, R_xlen_t, int);
78
 
85
 
79
#ifdef  __cplusplus
86
#ifdef  __cplusplus
80
}
87
}
81
#endif
88
#endif
82
 
89