new procrc for Progress Version 11

Frank Spaniak

New Member
Hi, I wrote a port in python for procrc.c, originally written by Grant P. Maizels, that works with Progress v11 files and wanted to share it that others might get some benefit.

This is my first open source publication so bear with me.

the webpage for it is : http://procrc.spaniak.org that gives several examples of usage.

Enjoy,

Frank
 
Last edited:
Thanks Tombascom!

I did one change on the code, because some includes have their name to big.
def get_string_terminated(addr):
keep_going = True
max_len = 32 # changed from 18 to 32
x = []
for val in p[addr: addr + max_len]:
keep_going = null_filter(keep_going, val)
if keep_going:
x.append(chr(val))
else:
break
return "".join(x)
 
Top