The R Project SVN R

Rev

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

Rev 32774 Rev 34748
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) 1997  Robert Gentleman and Ross Ihaka
3
 *  Copyright (C) 1997  Robert Gentleman and Ross Ihaka
-
 
4
 *  Copyright (C) 2005  R Development Core Team
4
 *
5
 *
5
 *  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
6
 *  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
7
 *  the Free Software Foundation; either version 2 of the License, or
8
 *  the Free Software Foundation; either version 2 of the License, or
8
 *  (at your option) any later version.
9
 *  (at your option) any later version.
Line 15... Line 16...
15
 *  You should have received a copy of the GNU General Public License
16
 *  You should have received a copy of the GNU General Public License
16
 *  along with this program; if not, write to the Free Software
17
 *  along with this program; if not, write to the Free Software
17
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 */
19
 */
19
 
20
 
-
 
21
#ifndef R_IOSTUFF_H
-
 
22
#define R_IOSTUFF_H
-
 
23
 
20
/*
24
/*
21
 *  I/O Support for Consoles and Character Vectors
25
 *  I/O Support for Consoles and Character Vectors
22
 *
26
 *
23
 *  This code provides analogues for the stdio routines "fgetc" and
27
 *  This code provides analogues for the stdio routines "fgetc" and
24
 *  (formerly) "ungetc" for "consoles" and character vectors.  These routines
28
 *  (formerly) "ungetc" for "consoles" and character vectors.  These routines
Line 71... Line 75...
71
int R_IoBufferPuts(char*, IoBuffer*);
75
int R_IoBufferPuts(char*, IoBuffer*);
72
 
76
 
73
int R_TextBufferInit(TextBuffer*, SEXP);
77
int R_TextBufferInit(TextBuffer*, SEXP);
74
int R_TextBufferFree(TextBuffer*);
78
int R_TextBufferFree(TextBuffer*);
75
int R_TextBufferGetc(TextBuffer*);
79
int R_TextBufferGetc(TextBuffer*);
-
 
80
 
-
 
81
#endif /* not R_IOSTUFF_H */