value = ArgInt(tt, entry, defaultval)
LONG ArgInt(UBYTE **, STRPTR, LONG);
This function looks in the ToolTypes array 'tt' returned by
ArgArrayInit() for 'entry' and returns the value associated with it. 'tt' is in standard ToolTypes format such as:
ENTRY=Value
The Value string is passed to atoi() and the result is returned by this function.
If 'entry' is not found, the integer 'defaultval' is returned.
This function requires that dos.library V36 or higher be opened.