get_function_by_name
Retrieve a specific function by its name from an IDA Pro reverse engineering project. Simplify function lookup and analysis for automated workflows.
Instructions
Get a function by its name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the function to get |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the function to get",
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"title": "get_function_by_nameArguments",
"type": "object"
}