Package ghidra.app.decompiler
Class DecompiledFunction
- java.lang.Object
-
- ghidra.app.decompiler.DecompiledFunction
-
public class DecompiledFunction extends java.lang.Object
A class to hold pieces of a decompiled function.
-
-
Constructor Summary
Constructors Constructor Description DecompiledFunction(java.lang.String signature, java.lang.String c)
Constructs a new decompiled function.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getC()
Returns the complete C code of the function.java.lang.String
getSignature()
Returns the function signature or prototype (eg, "int foo(double d)").
-
-
-
Method Detail
-
getSignature
public java.lang.String getSignature()
Returns the function signature or prototype (eg, "int foo(double d)").- Returns:
- the function signature or prototype (eg, "int foo(double d)")
-
getC
public java.lang.String getC()
Returns the complete C code of the function.- Returns:
- the complete C code of the function
-
-