stack = ScanStackToken(segment, defaultstack)
D0 D1 D2
LONG ScanStackToken(BPTR segment, LONG defaultstack)
This function scans a segment list for the magic stack token, i.e. "$STACK:<size>" and adjusts the default stack size passed in accordingly. The return value is the maximum of the second argument, and all stack tokens found in the segment list.
The stack size recorded in the segment list, computed as the maximum of the passed in size and all stack tokens found in the segment list.
This function uses a variant of the Knuth-Morris-Pratt fast string search algorithm to keep the complexity time as low as possible.