The R Project SVN R

Rev

Rev 4619 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4619 Rev 4662
Line 30... Line 30...
30
#include <stdarg.h>
30
#include <stdarg.h>
31
 
31
 
32
#define adj_right 1
32
#define adj_right 1
33
#define adj_left  0
33
#define adj_left  0
34
 
34
 
-
 
35
/* These should all be in a struct ! */
-
 
36
extern int  R_print_width;
-
 
37
extern int  print_na_width;
-
 
38
extern int  print_quote;
-
 
39
extern int  print_digits;
-
 
40
extern int  print_gap;
-
 
41
 
35
/* Computation of printing formats */
42
/* Computation of printing formats */
36
void formatLogical(int*,int,int*);
43
void formatLogical(int*,int,int*);
37
void formatInteger(int*,int,int*);
44
void formatInteger(int*,int,int*);
38
void formatReal(double*, int, int*, int*, int*);
45
void formatReal(double*, int, int*, int*, int*);
39
void formatComplex(complex*, int, int*, int*, int*, int*, int*, int*);
46
void formatComplex(complex*, int, int*, int*, int*, int*, int*, int*);