* @brief Returns a C declaration string for the given function. * * If there is no declaration string attached to the given function, it returns * the empty string. */
| 549 | * the empty string. |
| 550 | */ |
| 551 | std::string Module::getDeclarationStringForFunc(ShPtr<Function> func) const { |
| 552 | return config->getDeclarationStringForFunc(func->getInitialName()); |
| 553 | } |
| 554 | |
| 555 | /** |
| 556 | * @brief Returns a comment for @a func. |
no outgoing calls