# include "setup.h" char spot [][2] = { 0,0, /* HEADING */ 3,0, /* PARAGRAPH */ 8,0, 9,8, /* CBAUD */ 11,0, 12,8, /* PTYPE */ 8,35, 9,43, /* PBAUD */ 11,35, 12,43, /* PROTOCOL */ 14,16, /* immediate */ 15,16, /* permanent */ 16,16, /* quit */ 19,0, /* select */ }; /* * clear the screen */ clear () { prs ("\32$"); } /* * jump to spot a */ jump (a) { prs ("\33=$"); cputc (spot[a][0] + ' '); cputc (spot[a][1] + ' '); }