Skip to content

Commit 59683f8

Browse files
committed
Documented a new helper function
1 parent afbfe8b commit 59683f8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/functionInfo/functionInfo.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,14 @@
2626

2727
#include "../dlMapper/dlMapper.h"
2828

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+
*/
2937
static inline bool functionInfo_getFrom(struct loadedLibInfo* info, const char* functionName, struct functionInfo* functionInfo) {
3038
if (info == NULL) return false;
3139

0 commit comments

Comments
 (0)