Subversion Repositories planix.SVN

Rev

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

Rev 113 Rev 115
Line 225... Line 225...
225
var	short	DEL[VBSIZE];	/* Last deleted text */
225
var	short	DEL[VBSIZE];	/* Last deleted text */
226
#endif
226
#endif
227
var	bool	HADUP;		/* This insert line started with ^ then ^D */
227
var	bool	HADUP;		/* This insert line started with ^ then ^D */
228
var	bool	HADZERO;	/* This insert line started with 0 then ^D */
228
var	bool	HADZERO;	/* This insert line started with 0 then ^D */
229
#ifndef	BIT8
229
#ifndef	BIT8
230
char	INS[VBSIZE];	/* Last inserted text */
230
var	char	INS[VBSIZE];	/* Last inserted text */
231
#else
231
#else
232
short	INS[VBSIZE];	/* Last inserted text */
232
var	short	INS[VBSIZE];	/* Last inserted text */
233
#endif
233
#endif
234
var	int	Vlines;		/* Number of file lines "before" vi command */
234
var	int	Vlines;		/* Number of file lines "before" vi command */
235
var	int	Xcnt;		/* External variable holding last cmd's count */
235
var	int	Xcnt;		/* External variable holding last cmd's count */
236
var	bool	Xhadcnt;	/* Last command had explicit count? */
236
var	bool	Xhadcnt;	/* Last command had explicit count? */
237
var	short	ZERO;
237
var	short	ZERO;
Line 294... Line 294...
294
 
294
 
295
/*
295
/*
296
 * Function types
296
 * Function types
297
 */
297
 */
298
int	beep();
298
int	beep();
299
void	qcount();
299
int	qcount();
300
void	vchange();
300
int	vchange();
301
void	vdelete();
301
int	vdelete();
302
int	vgrabit();
302
int	vgrabit();
303
void	vinschar();
303
int	vinschar();
304
void	vmove();
304
int	vmove();
305
void	vputchar();
305
int	vputchar();
306
int	vshift();
306
int	vshift();
307
void	vyankit();
307
int	vyankit();