ida_add_function_comment
Add comments to functions in the IDA database to enhance code understanding and documentation. Specify the function name and comment content for clear annotations.
Instructions
Add a comment to a function in the IDA database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | Yes | ||
function_name | Yes | ||
is_repeatable | No |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"title": "Comment",
"type": "string"
},
"function_name": {
"title": "Function Name",
"type": "string"
},
"is_repeatable": {
"default": false,
"title": "Is Repeatable",
"type": "boolean"
}
},
"required": [
"function_name",
"comment"
],
"title": "AddFunctionComment",
"type": "object"
}