By downloading this code you agree to the
Source Code Use License (PDF). |
{version = 1.01; (* of wwlow.p 2002 July 10}
(* begin module describe.wwlow *)
(*
name
wwlow: word wrap, low order ASCII
synopsis
wwlow(input: in, output: out)
files
input: text to be wrapped
output: wrapped text
description
This Pascal program takes ASCII text and filters it. Lines longer than
the constant maxline are altered by replacing the first space after position
maxline with a carriage return. This has the effect of wrapping the lines
between 'words'.
Like the ww program, this program wraps, but it drops all ASCII characters
that are not in the range 32 (space) to 126 (~). This is useful for cleaning
up wordY or wordIMperfekt files.
examples
documentation
see also
word wrap program that does not filter: ww.p
author
Thomas Dana Schneider
bugs
The constant maxline is fixed at compile time, of course.
*)
(* end module describe.wwlow *)
{This manual page was created by makman 1.45}
{created by htmlink 1.62}