| 1598 | } |
| 1599 | |
| 1600 | bool Library::formatstr_function(const Token* ftok) const |
| 1601 | { |
| 1602 | if (isNotLibraryFunction(ftok)) |
| 1603 | return false; |
| 1604 | |
| 1605 | const auto it = utils::as_const(mData->mFunctions).find(getFunctionName(ftok)); |
| 1606 | if (it != mData->mFunctions.cend()) |
| 1607 | return it->second.formatstr; |
| 1608 | return false; |
| 1609 | } |
| 1610 | |
| 1611 | int Library::formatstr_argno(const Token* ftok) const |
| 1612 | { |
no test coverage detected