We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 811c8dc commit 6159828Copy full SHA for 6159828
src/parser/file/elf/elfFile.h
@@ -92,6 +92,14 @@ static inline struct elfFile* elfFileOrNull(struct binaryFile * self) {
92
*/
93
bool elfFile_addr2String(struct binaryFile* self, void* address, struct callstack_frame* frame);
94
95
+/**
96
+ * Loads the function information for the function of the given name.
97
+ *
98
+ * @param self the ELF file abstraction structure to search in
99
+ * @param functionName the name of the function to load the information
100
+ * @param info the @c functionInfo structure to fill in
101
+ * @return whether the function was found
102
+ */
103
bool elfFile_getFunctionInfo(struct elfFile* self, const char* functionName, struct functionInfo* info);
104
105
/**
0 commit comments