home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume4 / fmtr / fmtr.h < prev    next >
C/C++ Source or Header  |  1986-11-30  |  365b  |  15 lines

  1. #include <stdio.h>
  2. #include <ctype.h>
  3.  
  4. int z_flag;        /* look behind zero width spaces? */
  5. int nf_val;        /* no fill on or off? */
  6. int ul_val;        /* number of lines to underline */
  7. int ce_val;        /* number of lines to center */
  8. int llength;
  9.  
  10. char outbuf[BUFSIZ];    /* output buffer, ridiculously large */
  11. char *outp;        /* pointer into outbuf */
  12.  
  13. void n_brk();
  14. char *strcpy();
  15.