home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume39
/
par131
/
part03
/
Par131
/
reformat.h
< prev
Wrap
C/C++ Source or Header
|
1993-09-11
|
1KB
|
27 lines
/*********************/
/* reformat.h */
/* for Par 1.31 */
/* Copyright 1993 by */
/* Adam M. Costello */
/*********************/
/* This is ANSI C code. */
#include "errmsg.h"
char **reformat(
const char * const *inlines, const char * const *endline,
int hang, int prefix, int suffix, int width, int cap, int fit,
int guess, int just, int last, int Report, int touch, errmsg_t errmsg
);
/* inlines is an array of pointers to input lines, up to but not */
/* including endline. The other parameters are the variables of the */
/* same name as described in "par.doc". reformat(inlines, endline, */
/* hang, prefix, suffix, width, cap, fit, guess, just, last, Report, */
/* touch, errmsg) returns a NULL-terminated array of pointers to */
/* output lines containing the reformatted paragraph, according to */
/* the specification in "par.doc". None of the integer parameters */
/* may be negative. Returns NULL on failure. */