The R Project SVN R

Rev

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

Rev 4662 Rev 5269
Line 1... Line 1...
1
/*
1
/*
2
 *  R : A Computer Language for Statistical Data Analysis
2
 *  R : A Computer Language for Statistical Data Analysis
3
 *  Copyright (C) 1998, 1999   Robert Gentleman, Ross Ihaka 
3
 *  Copyright (C) 1998, 1999   Robert Gentleman, Ross Ihaka
4
 *                             and the R Development Core Team
4
 *                             and the R Development Core Team
5
 *
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation; either version 2 of the License, or
8
 *  the Free Software Foundation; either version 2 of the License, or
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
 
-
 
42
/* Computation of printing formats */
35
/* Computation of printing formats */
43
void formatLogical(int*,int,int*);
36
void formatLogical(int*,int,int*);
44
void formatInteger(int*,int,int*);
37
void formatInteger(int*,int,int*);
45
void formatReal(double*, int, int*, int*, int*);
38
void formatReal(double*, int, int*, int*, int*);
46
void formatComplex(complex*, int, int*, int*, int*, int*, int*, int*);
39
void formatComplex(complex*, int, int*, int*, int*, int*, int*, int*);