• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

ArtisticH A D01-Apr-19955.1 KiB11886

CopyingH A D01-Apr-199512.2 KiB249200

INSTALLH A D01-Apr-1995322 117

MakefileH A D14-Apr-19952.9 KiB11659

READMEH A D01-Apr-19952 KiB4834

WhatsNewH A D14-Apr-1995306 87

dep.hH A D14-Apr-19952 KiB5025

inviz.1H A D01-Apr-19952.8 KiB125124

inviz.cH A D01-Apr-19951.4 KiB7651

inviz_num.cH A D01-Apr-19953.1 KiB164154

inviz_text.cH A D01-Apr-19952.1 KiB11191

lists.cH A D01-Apr-199512.1 KiB501297

loadfile.cH A D03-May-20221 KiB5335

memory.hH A D01-Apr-1995131 76

string.hH A D01-Apr-1995148 87

strtod.cH A D01-Apr-19952.5 KiB122103

strtou.cH A D01-Apr-19953.4 KiB13289

translate.hH A D01-Apr-19951.6 KiB9892

version.hH A D14-Apr-199546 32

viz.1H A D14-Apr-199516.4 KiB689688

viz.cH A D03-May-202238 KiB1,5421,181

viz.hH A D03-May-20228.1 KiB371308

viz_decode.cH A D01-Apr-19952.2 KiB124104

vizgrammar.yH A D03-May-202217.3 KiB863704

README

1Viz copies its input to its output, converting invisible characters
2to a visible form.  If the -t option is used, the output is
3formatted in a form that can be completely inverted by inviz,
4which allows a binary file to be converted to a text form and then back.
5It is much more flexible than either cat -v  or  od (either old or
6POSIX od), and it is also 2\-4 times faster.
7
8By default, the input is treated as a sequence of characters.
9However, a file format may be specified, in which case
10viz can handle files containing a mixture of data of arbitrary types.
11
12The format can include repeat counts
13and comments that are embedded in the output stream.
14
15Uninteresting data can be skipped over and not printed on stdout.
16
17Additional flexibility is provided through user-settable variables,
18which can be used as repeat counts.  Simple math can be done on the
19variables, and chars, shorts, or integers from the input stream
20can be stored in them.
21
22--------------------
23
24	Copyright (c) 1989-1994 by William Deich.
25    Not derived from licensed software.
26
27    This program is free software; you can redistribute it and/or modify
28    it under the terms of either:
29
30        a) the GNU General Public License as published by the Free
31        Software Foundation; either version 1, or (at your option) any
32        later version, or
33
34        b) the "Artistic License" (from Larry Wall).
35
36    This program is distributed in the hope that it will be useful,
37    but WITHOUT ANY WARRANTY; without even the implied warranty of
38    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See either
39    the GNU General Public License or the Artistic License for more details.
40
41    You should have received a copy of the Artistic License with this
42    Kit, in the file named "Artistic".  If not, I'll be glad to provide one.
43
44    You should also have received a copy of the GNU General Public License
45    along with this program; if not, write to the Free Software
46    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
47
48