mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 10:09:20 +01:00
idautils.py: Clarified the note in Functions()
This commit is contained in:
parent
700dcef6cd
commit
5cb6044277
@ -198,8 +198,9 @@ def Functions(start=idaapi.cvar.inf.minEA, end=idaapi.cvar.inf.maxEA):
|
|||||||
@return: list of heads between start and end
|
@return: list of heads between start and end
|
||||||
|
|
||||||
@note: The last function that starts before 'end' is included even
|
@note: The last function that starts before 'end' is included even
|
||||||
if it extends beyond 'end'. Any function that has its chunks in
|
if it extends beyond 'end'. Any function that has its chunks scattered
|
||||||
multiple segments will be reported multiple times.
|
in multiple segments will be reported multiple times, once in each segment
|
||||||
|
as they are listed.
|
||||||
"""
|
"""
|
||||||
func = idaapi.get_func(start)
|
func = idaapi.get_func(start)
|
||||||
if not func:
|
if not func:
|
||||||
|
Loading…
Reference in New Issue
Block a user