The R Project SVN R

Rev

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

Rev 37001 Rev 41901
Line 50... Line 50...
50
	int		 read_offset;		/* Read pointer location */
50
	int		 read_offset;		/* Read pointer location */
51
} IoBuffer;
51
} IoBuffer;
52
 
52
 
53
 
53
 
54
typedef struct TextBuffer {
54
typedef struct TextBuffer {
55
	char	*vmax;				/* Memory stack top */
55
	void	*vmax;				/* Memory stack top */
56
	unsigned char	*buf;			/* Line buffer */
56
	unsigned char	*buf;			/* Line buffer */
57
	unsigned char	*bufp;			/* Line buffer location */
57
	unsigned char	*bufp;			/* Line buffer location */
58
	SEXP	text;				/* String Vector */
58
	SEXP	text;				/* String Vector */
59
	int	ntext;				/* Vector length */
59
	int	ntext;				/* Vector length */
60
	int	offset;				/* Offset within vector */
60
	int	offset;				/* Offset within vector */