home *** CD-ROM | disk | FTP | other *** search
- This version of binpatch operates also on array's.
- It replaces the version of binpatch that I uploaded Jan 25 1994
- For a variable:
- short views[10] = {0,0,1,0,1,1,1,0,1,1};
-
- USING INDEXES So instead of
- binpatch -w -o 4 -s _view a.out
-
- do
- binpatch -w -s '_view[2]' a.out
-
- Using OFFSETS: Also:
- binpatch -s '_view[3]' a.out
-
- behaves just like:
- binpatch -o 3 '_view' a.out
- because '-b -w -l' were not specifically used.
-
- Of course you can also use the `-r' option!
-
- This version has nicer help also.
- Type:
- binpatch
- and
- binpatch -HELP
-
- -Rob
-