retdec
get_name_of_param.h
Go to the documentation of this file.
1 
8 #ifndef RETDEC_LLVMIR2HLL_SEMANTICS_SEMANTICS_LIBC_SEMANTICS_GET_NAME_OF_PARAM_H
9 #define RETDEC_LLVMIR2HLL_SEMANTICS_SEMANTICS_LIBC_SEMANTICS_GET_NAME_OF_PARAM_H
10 
11 #include <optional>
12 #include <string>
13 
14 namespace retdec {
15 namespace llvmir2hll {
16 namespace semantics {
17 namespace libc {
18 
19 std::optional<std::string> getNameOfParam(const std::string &funcName,
20  unsigned paramPos);
21 
22 } // namespace libc
23 } // namespace semantics
24 } // namespace llvmir2hll
25 } // namespace retdec
26 
27 #endif
A library providing API for working with back-end IR.
std::optional< std::string > getNameOfParam(const std::string &funcName, unsigned paramPos)
Implements getNameOfParam() for LibcSemantics.
Definition: get_name_of_param.cpp:644
Definition: archive_wrapper.h:19