home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume39 / par131 / part03 / Par131 / reformat.h < prev   
C/C++ Source or Header  |  1993-09-11  |  1KB  |  27 lines

  1. /*********************/
  2. /* reformat.h        */
  3. /* for Par 1.31      */
  4. /* Copyright 1993 by */
  5. /* Adam M. Costello  */
  6. /*********************/
  7.  
  8. /* This is ANSI C code. */
  9.  
  10.  
  11. #include "errmsg.h"
  12.  
  13.  
  14. char **reformat(
  15.   const char * const *inlines, const char * const *endline,
  16.   int hang, int prefix, int suffix, int width, int cap, int fit,
  17.   int guess, int just, int last, int Report, int touch, errmsg_t errmsg
  18. );
  19.   /* inlines is an array of pointers to input lines, up to but not     */
  20.   /* including endline.  The other parameters are the variables of the */
  21.   /* same name as described in "par.doc". reformat(inlines, endline,   */
  22.   /* hang, prefix, suffix, width, cap, fit, guess, just, last, Report, */
  23.   /* touch, errmsg) returns a NULL-terminated array of pointers to     */
  24.   /* output lines containing the reformatted paragraph, according to   */
  25.   /* the specification in "par.doc".  None of the integer parameters   */
  26.   /* may be negative. Returns NULL on failure.                         */
  27.