mirror of
https://github.com/prirun/p50em.git
synced 2026-01-15 07:53:05 +00:00
13 lines
383 B
C
13 lines
383 B
C
/* istext.h, Jim Wilcoxson, April 5, 2007
|
|
Text conversion routines for the Prime emulator.
|
|
*/
|
|
|
|
#define OBUFMAX 4096
|
|
|
|
typedef struct {
|
|
int oddbyte; /* true if next char written is in right byte */
|
|
int col; /* column # of next byte to be written, 0-based */
|
|
int spaces; /* # of held-back spaces */
|
|
unsigned char obuf[OBUFMAX];
|
|
} utextp_t;
|