temp_buf          466 src/dps8/dps8_prt.c   char * temp_buf  = malloc (total_len);
temp_buf          467 src/dps8/dps8_prt.c   if (! temp_buf)
temp_buf          472 src/dps8/dps8_prt.c   (void)memcpy (temp_buf, st -> history_buf, st -> history_buf_len);
temp_buf          473 src/dps8/dps8_prt.c   (void)memcpy (temp_buf + st -> history_buf_len, data, len);
temp_buf          485 src/dps8/dps8_prt.c           if (temp_buf [i + 0] == '\r'    && // CR
temp_buf          486 src/dps8/dps8_prt.c               isdigit (temp_buf [i + 13]) && // [0-9]
temp_buf          487 src/dps8/dps8_prt.c               isdigit (temp_buf [i + 14]) && // [0-9]
temp_buf          488 src/dps8/dps8_prt.c               isdigit (temp_buf [i + 15]) && // [0-9]
temp_buf          489 src/dps8/dps8_prt.c               isdigit (temp_buf [i + 16]) && // [0-9]
temp_buf          490 src/dps8/dps8_prt.c               isdigit (temp_buf [i + 17]) && // [0-9]
temp_buf          491 src/dps8/dps8_prt.c               temp_buf [i + 18] == ' '    && // space
temp_buf          492 src/dps8/dps8_prt.c               temp_buf [i + 19] == ' '    && // space
temp_buf          493 src/dps8/dps8_prt.c               temp_buf [i + 20] == ' '    && // space
temp_buf          494 src/dps8/dps8_prt.c               temp_buf [i + 21] == ' '    && // space
temp_buf          495 src/dps8/dps8_prt.c               temp_buf [i + 22] == ' ')      // space
temp_buf          506 src/dps8/dps8_prt.c           if (temp_buf [i + 0] == '\r'    && // CR
temp_buf          507 src/dps8/dps8_prt.c               temp_buf [i + 1] == '\r'    && // CR
temp_buf          508 src/dps8/dps8_prt.c               temp_buf [i + 2] == '\f'    && // FF
temp_buf          509 src/dps8/dps8_prt.c               isdigit (temp_buf [i + 16]) && // [0-9]
temp_buf          510 src/dps8/dps8_prt.c               isdigit (temp_buf [i + 17]) && // [0-9]
temp_buf          511 src/dps8/dps8_prt.c               isdigit (temp_buf [i + 18]) && // [0-9]
temp_buf          512 src/dps8/dps8_prt.c               isdigit (temp_buf [i + 19]) && // [0-9]
temp_buf          513 src/dps8/dps8_prt.c               isdigit (temp_buf [i + 20]))   // [0-9]
temp_buf          524 src/dps8/dps8_prt.c       (void)memcpy (st -> history_buf, temp_buf + total_len - sizeof (st -> history_buf), sizeof (st -> history_buf));
temp_buf          529 src/dps8/dps8_prt.c       (void)memcpy (st -> history_buf, temp_buf, total_len);
temp_buf          533 src/dps8/dps8_prt.c   FREE (temp_buf);