#include #include "roff.h" static struct req_in_data { int not_1st; int last_i; } req_in_data; void req_in(int i) { #if 0 if (req_in_data.not_1st) { puts("\n"); req_in_data.not_1st = 0; } if (i) { printf("\n
\n", i); req_in_data.not_1st = 1; } #endif puts("
"); } void req_sp(int i) { printf("\n
\n", (i*12)/40); }