1 /*
2   Print
3   Printout routines including the word wrap mechanism
4   JBS 15 June 1994
5 */
6 
7 #ifndef _PRINT_
8 
9 #define _PRINT_
10 
11 #include "types.h"
12 
13 void init_print(void);
14 void flush_prt_buff(void);
15 void print_num(word);
16 void PrintNumber(int);
17 void print2(word);
18 void print1(word);
19 void wrt(void);
20 void writeln(void);
21 void new_line(void);
22 void print_char(word);
23 
24 #endif
25