amitools
amitools copied to clipboard
fd (arp_lib.fd)
There is the following regex line: https://github.com/cnvogelg/amitools/blob/master/amitools/fd/FDFormat.py#L69 It cannot match a line like this (I found it in arp_lib.fd):
Input()
You should use the following regex to match this line too:
([A-Za-z][_A-Za-z00-9]+)\((.*?)\)(?:\((.*?)\))?
Also, you should mention that there is the following line with the duplicate arg name:
Execute(string,file,file)(D1/D2/D3)
And also this line (there is a space):
Printf(string, stream)(a0/a1)
And this:
GetKeywordIndex(char *,char *)(A0/A1)
Just arg types instead of names.