declare_c_type
Create or update local types in IDA Pro by parsing C declarations to define structures, typedefs, and other custom types for binary analysis.
Instructions
Create or update a local type from a C declaration
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| c_declaration | Yes | C declaration of the type. Examples include: typedef int foo_t; struct bar { int a; bool b; }; |