repo.or.cz
/
ooovba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update ooo320-m1
[ooovba.git]
/
solenv
/
bin
/
fix_def_ord.cmd
blob
eaeb666626dbbf9844791e4cebc436519c0238a2
1
/*
os2 build scripts
2
3
this script is used to process def results.
4
Adds ordinal number to every line.
5
6
*/
7
8
lmax
=
0
9
smax
=
''
10
11
ord
=
1
12
do
while
(
lines
())
13
14
l
=
linein
()
15
IF
LENGTH
(
l
)>
0
THEN DO
16
say
l
/*
' @'
ord
' RESIDENTNAME'
*/
17
ord
=
ord
+
1
18
END
19
end