edb_whatis
Quickly identify the type of an expression or variable in a debugged program. Returns the type name without full definition.
Instructions
Print the type of an expression (short form).
Equivalent to GDB's whatis command. Shows the type name without
full definition (unlike edb_ptype).
Args: params (PtypeInput): Expression - expression (str): Expression (e.g., 'main', 'argc')
Returns: str: Type name
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |