fork download
  1. /* Buffer for line numbers.
  2.   An 11 digit counter may overflow within an hour on a P2/466,
  3.   an 18 digit counter needs about 1000y */
  4. #define LINE_COUNTER_BUF_LEN 20
  5. static char line_buf[LINE_COUNTER_BUF_LEN] =
  6. {
  7. ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
  8. ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '0',
  9. '\t', '\0'
  10. };
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty