We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afbfe8b commit 59683f8Copy full SHA for 59683f8
src/functionInfo/functionInfo.c
@@ -26,6 +26,14 @@
26
27
#include "../dlMapper/dlMapper.h"
28
29
+/**
30
+ * Fills the given function info structure using the given loaded runtime image info.
31
+ *
32
+ * @param info the runtime image info to be examined
33
+ * @param functionName the name of the function to be found
34
+ * @param functionInfo the function info structure to be filled
35
+ * @return whether the structure was filled, e. g. whether the function was found in the runtime image
36
+ */
37
static inline bool functionInfo_getFrom(struct loadedLibInfo* info, const char* functionName, struct functionInfo* functionInfo) {
38
if (info == NULL) return false;
39
0 commit comments