summaryrefslogtreecommitdiff
path: root/ipl/gprogs/blp2rows.icn
blob: 37a8825752181a140189c85b5a43b656d507b20f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
############################################################################
#
#	File:     blp2rows.icn
#
#	Subject:  Program to convert bi-level pattern to row file
#
#	Author:   Ralph E. Griswold
#
#	Date:     October 30, 2001
#
############################################################################
#
#  This file is in the public domain.
#
############################################################################
#
#
#
############################################################################
#
#  Requires:  Version 9 graphics
#
############################################################################
#
#  Links:  patutils
#
############################################################################

link patutils

procedure main()
   local rows

   rows := pat2rows(read())

   every write(!rows)

end