The R Project SVN R

Rev

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

Rev 60268 Rev 61776
Line 43... Line 43...
43
#include <float.h> /* for DBL_EPSILON */
43
#include <float.h> /* for DBL_EPSILON */
44
#include <Rmath.h>
44
#include <Rmath.h>
45
#include <Print.h>
45
#include <Print.h>
46
 
46
 
47
/* this is just for conformity with other types */
47
/* this is just for conformity with other types */
-
 
48
attribute_hidden
48
void formatRaw(Rbyte *x, R_xlen_t n, int *fieldwidth)
49
void formatRaw(Rbyte *x, R_xlen_t n, int *fieldwidth)
49
{
50
{
50
    *fieldwidth = 2;
51
    *fieldwidth = 2;
51
}
52
}
52
 
53
 
-
 
54
attribute_hidden
53
void formatString(SEXP *x, R_xlen_t n, int *fieldwidth, int quote)
55
void formatString(SEXP *x, R_xlen_t n, int *fieldwidth, int quote)
54
{
56
{
55
    int xmax = 0;
57
    int xmax = 0;
56
    int l;
58
    int l;
57
 
59